Laurent
Laurent

Reputation: 723

Bootstrap JS Tab and CSS : get rid of the underline style

I am using the bootstrap JS tab. Unfortunately, I deleted a few lines in my CSS file (and of course don't remember which one). Do you know how I could get rid of the underline style in my various tabs in order to restore a style similar to http://www.w3schools.com/bootstrap/tryit.asp?filename=trybs_ref_js_tab&stacked=h ?

enter image description here

Many thanks for your help.

Upvotes: 1

Views: 359

Answers (1)

nmg49
nmg49

Reputation: 1386

Look at text-decoration.

.nav-tabs a {
  text-decoration: none;
}

Upvotes: 1

Related Questions