HTML:
<div class="collapse navbar-collapse navbar-ex1-collapse">
<ul id="menu-primary" class="nav navbar-nav menustyle">
<li><a href="#">Home</a></li>
</ul>
</div>
CSS:
.menustyle a:before{
position: absolute;
top: 0;
left: 0;
content: "";
height: 2px;
background-color: #fff;
width: 0%;
}
.nav > li > a:hover .menustyle a:before{
width: 100%!important;
}
This is not working when I use Bootstrap but works without bootstrap.