I am working on Bootstrap and I have a requirement similar to the image below ...
Online demo
Demand

I can get everything except the height of the border. The height of the border should not start at the top and end at the bottom. But the difficult part: the total height must be clickable ...: (
What i get

HTML
<nav class="navbar navbar-default"> <div class="container-fluid"> <ul class="nav navbar-nav"> <li><a href="#">Link 1</a></li> <li><a href="#">Link 2</a></li> <li><a href="#">Link 3</a></li> <li><a href="#">Link 4</a></li> </ul> </div> </nav>
CSS
.navbar-default{background:#005986;} .navbar{border:0;border-radius:0;} ul.nav{border-right:1px solid #84B6D0;} ul.nav li a{border-left:1px solid #84B6D0;color:#fff; } .navbar-default .navbar-nav>li>a,.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover{color:#fff;} .navbar-default .navbar-nav>li>a:hover{background:#022E44;}
source share