I would like to align my <li>
center about the <nav>
how can i do it ?
There is the code :
.html
<nav class="nav">
<ul>
<li>Home</li>
<li>About</li>
</ul>
</nav>
.css
.nav {
border: 2px solid;
}
.nav ul li{
border: 1px solid;
padding: 10px;
height: 30px;
width: 100px;
display: inline-block;
}