Jump to content

Bootstrap - 'tabbable' class


smus

Recommended Posts

I need the tabs to be on the left(horizontally). Tried to use the class "tabbable tabs-left" (class="tabbable tabs-left")
but it doesn't work. They continue to be on the bottom (by default), as in the official
example(http://getbootstrap.com/2.3.2/components.html#navbar):


<div class="tabbable tabs-left"> 
  <ul class="nav nav-tabs">
    <li class="active"><a href="#tab1" data-toggle="tab">Section 1</a></li>
    <li><a href="#tab2" data-toggle="tab">Section 2</a></li>
  </ul>
  <div class="tab-content">
    <div class="tab-pane active" id="tab1">
      <p>I'm in Section 1.</p>
    </div>
    <div class="tab-pane" id="tab2">
      <p>Howdy, I'm in Section 2.</p>
    </div>
  </div>
</div>

Maybe anyone know what is wrong?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...