Skip to content

Instantly share code, notes, and snippets.

@paulzay
Last active June 1, 2020 15:25
Show Gist options
  • Save paulzay/f0cf3ec18e5d44b9f298db67335a11de to your computer and use it in GitHub Desktop.
Save paulzay/f0cf3ec18e5d44b9f298db67335a11de to your computer and use it in GitHub Desktop.
flexbox tutorial
nav{
display: flex;
flex-direction: row;
justify-content: space-between;
}
.navlinks ul li{
display: inline-flex;
}
<nav class="navbar">
<div class="logo"><img src="#"/></div>
<div class="navlinks">
<ul>
<li><a href="#" alt="">Home</a></li>
<li><a href="#" alt="">About</a></li>
<li><a href="#" alt="">Contact</a></li>
<li><a href="#" alt="">Blog</a></li>
<li><a href="#" alt="">Careers</a></li>
</ul>
</div>
<div class="nav-end"><button>Request Invite</button></div>
</nav>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment