I am trying to get the links to the right side of the page and the logo stay on the left side using flex box. I tried justify-content: flex-end;
on .main-nav
but nothing happens.
* {
box-sizing: border-box;
}
.header {
display: flex;
width: 100%;
background: green;
}
.main-nav {
display: flex;
}
.main-nav li {
text-align: right;
}
<header class="header">
<h1 class="logo"><a href="#">Flexbox</a></h1>
<ul class="main-nav">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Contact</a></li>
</ul>
</header>