Hello everyone, I am new to CSS and trying to figure out how to add some space between the boxes in my list when resizing the page. Can anyone help me with this? Thanks!
nav{
border: solid;
border-color: black;
}
ul li
{
margin-bottom: 11px;
display: inline;
font-weight: 900;
border: solid;
border-color: black;
}
nav ul li{
color: black;
text-decoration: none;
padding: auto;
padding-right: 80px;
padding-left: 80px;
}
<nav>
<ul>
<li>List</li>
<li>Contact Us</li>
<li>Shopping Cart</li>
<li>Login</li>
</ul>
</nav>