JSFiddle - React, Tailwind, and code Playground
HTML
<ul>
<li><h3>Меню</h3></li>
<li><h3>Меню</h3></li>
<li><h3>Меню</h3></li>
<li><h3>Меню</h3></li>
<li><h3>Меню</h3></li>
<li><h3>Меню</h3></li>
</ul>
CSS
ul {
padding: 0px auto;
width: 1150px;
height: 80px;
background: #004062;
display: table;
}
li {
padding: 0px auto;
list-style: none;
vertical-align:middle;
display: table-cell;
width: 115px;
height: 80px;
margin-left: 23px;
line-height: 45px;
text-align: center;
}
li:hover {
background: #0077b6;
}
h3 {
color: #d4efff;
}