Created
December 10, 2012 09:21
-
-
Save riix/4249555 to your computer and use it in GitHub Desktop.
Tab Basic
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="tab-a"><!-- tab --> | |
<ul class="tab"> | |
<li class="active"><a href="#tab1">탭 1</a></li> | |
<li><a href="#tab2">탭 2</a></li> | |
<li><a href="#tab3">탭 3</a></li> | |
</ul> | |
<div class="tab-container"> | |
<div id="tab4" class="tab-contents active"> | |
내용1 | |
</div> | |
<div id="tab5" class="tab-contents"> | |
내용2 | |
</div> | |
<div id="tab6" class="tab-contents"> | |
내용3 | |
</div> | |
</div> | |
</div><!-- // tab --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment