Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove line under bootstrap tabbed navigation

I am developing a page using bootstrap latest version, and using tabbed navigation for a page. I want to know how to remove the line under the tabbed nav.

Here is my image enter image description here

like image 635
lure Avatar asked Dec 14 '25 07:12

lure


2 Answers

Just overide the default bootstrap tabbed nav styling by setting border-bottom css to 0px

<ul class="nav nav-tabs" style="border-bottom:0px">
  <li class="active">
     <a href="#">Home</a> 
  </li> 
  <li><a href="#">Tutorials</a></li>
  <li><a href="#">Practice Editor </a></li> 
  <li><a href="#">Gallery</a></li> 
  <li><a href="#">Contact</a></li> 
</ul>
like image 74
Ellery Avatar answered Dec 16 '25 23:12

Ellery


Add "border-bottom-0" class to ul tag.

<ul class="nav nav-tabs border-bottom-0">
  <li class="nav-item">
    <a class="nav-link active" aria-current="page" href="#">Active</a>
  </li>
  <li class="nav-item">
    <a class="nav-link" href="#">Link</a>
  </li>
  <li class="nav-item">
    <a class="nav-link" href="#">Link</a>
  </li>
  <li class="nav-item">
    <a class="nav-link disabled" href="#" tabindex="-1" aria-disabled="true">Disabled</a>
  </li>
</ul>
like image 41
jeevan Kumar Avatar answered Dec 16 '25 23:12

jeevan Kumar



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!