I want to have only the first element of the navbar on the left of and the others centered. What am I missing?
.nav {
padding: 0;
text-align: center;
}
.nav li {
display: inline;
padding-right: 20px;
color: #dfd1d1;
}
/* trying to use the below to put the logo on the left but not working */
.nav li:first-child {
text-align: left;
}
.nav :first-child {
text-align: left;
}
.nav li:first-of-type {
text-align: left;
}
.header {
padding: 25px 10px 25px 10px;
background-color: rgb(17, 140, 206);
}
.main-content {
padding: 25px;
background-color: rgb(152, 158, 160);
margin: 30px auto 0 auto;
}
h1 {
text-align: center;
}
<div class="header">
<ul class="nav">
<li> Logo</li>
<li> Home</li>
<li> Price</li>
<li> About / Contacts</li>
<li> Home</li>
</ul>
</div>