I'm having trouble figuring this out. How can I properly center list items within the ul
?
body {margin: 0}
ul {
width: 1000px;
margin: 0 auto;
padding: 0;
list-style-type: none;
margin-top: 30px;
overflow: hidden;
background-color: #333;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
ul li {
display: inline;
}
li a {
display: inline-block;
padding: 8px 11px;
margin-right: 10px;
color: #fff;
text-decoration: none;
text-align: center;
font-size: 18px;
line-height: 50px;
}
li a:hover {
background-color: #111;
}
<ul>
<li><a href="#">Home</a><li>
<li><a href="#">About me</a><li>
<li><a href="#">Projects</a><li>
<li><a href="#">Contact</a><li>
</ul>