I have a horizontal and I need to center each in it vertically. My markup is below. Each has a border
You can use flexbox for this.
ul { display: flex; align-items: center; }
A detailed explanation of how to use flexbox can be found here.