Created
February 24, 2012 18:47
-
-
Save whyisjake/1902908 to your computer and use it in GitHub Desktop.
Tabs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="tabbable tabs-left"> | |
<ul class="nav nav-tabs"> | |
<li class="active"><a href="#lA" data-toggle="tab">Section 1</a></li> | |
<li class=""><a href="#lB" data-toggle="tab">Section 2</a></li> | |
<li class=""><a href="#lC" data-toggle="tab">Section 3</a></li> | |
</ul> | |
<div class="tab-content"> | |
<div class="tab-pane active" id="lA"> | |
<p>I'm in Section A.</p> | |
</div> | |
<div class="tab-pane" id="lB"> | |
<p>Howdy, I'm in Section B.</p> | |
</div> | |
<div class="tab-pane" id="lC"> | |
<p>What up girl, this is Section C.</p> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment