Skip to content

Instantly share code, notes, and snippets.

@knoonrx
Created May 15, 2016 13:03
Show Gist options
  • Save knoonrx/d6004049c1055bfaf06408c865e4a2fd to your computer and use it in GitHub Desktop.
Save knoonrx/d6004049c1055bfaf06408c865e4a2fd to your computer and use it in GitHub Desktop.
Materialize.css framework menu justify
<html>
<style>
/*menu justify*/
.menu-justified {
width: 100%;
}
.menu-justified>li {
float: none;
}
.menu-justified>li>a {
text-align: center;
width: 100%;
}
.menu-justified:hover > li.active {
background-color: transparent;
}
@media (min-width: 600px) {
.menu-justified>li {
display: table-cell;
width: 1%;
}
}
/*menu justify*/
</style>
<header>
<div class="navbar-fixed">
<nav>
<div class="container">
<div class="row">
<div class="col s2">
<a href="#">Logo</a>
</div>
<div class="col s10">
<div class="nav-wrapper">
<ul class="right hide-on-small-only menu-justified">
<li class="active"><a href="collapsible.html">JavaScript</a></li>
<li><a href="sass.html" class="active">Sass</a></li>
<li><a href="badges.html">Components</a></li>
</ul>
</div>
</div>
</div>
</div>
</nav>
</div>
</header>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment