I have seen this post, but being a new user I can\'t comment to ask for clarification.
I\'m using the justified nav tabs in Bootstrap and don\'t want them to stack o
And edit of pjb's answer, even keeps the default styling for bootstrap justified nav-bar.
@media (max-width: 768px){
.nav-justified > li {
display: table-cell;
width: 1%;
}
.nav-justified > li > a {
border-bottom: 1px solid #ffffd !important;
border-radius: 4px 4px 0 0 !important;
margin-bottom: 0 !important;
}
.nav-justified > li.active > a {
border-bottom: 1px solid transparent !important;
}
}