Creating a tabbed component is actually a simple task. If you want create tabs add the class .tabs to the <div> For example:
You can alter the radius of corners and size of tables. For to add the rounded corners you can add .bradius-x class to table tag.
You can alter the radius of corners and size of tables. For to add the rounded corners you can add .bradius-x class to table tag.
You can alter the radius of corners and size of tables. For to add the rounded corners you can add .bradius-x class to table tag.
<div class="tabs">
<ul>
<li><a href="#tab1"> ... </a></li>
<li><a href="#tab2"> ... </a></li>
</ul>
<div class="content box">
<div id="tab1" class="active"> ... </div>
<div id="tab2"> ... </div>
</div>
</div>
If you can alter the vertical and horizontal of position of tabs add the classes .right to tabs. For example:
You can alter the radius of corners and size of tables. For to add the rounded corners you can add .bradius-x class to table tag.
You can alter the radius of corners and size of tables. For to add the rounded corners you can add .bradius-x class to table tag.
You can alter the radius of corners and size of tables. For to add the rounded corners you can add .bradius-x class to table tag.
<div class="tabs right">
<ul>
<li><a href="#tab1"> ... </a></li>
<li><a href="#tab2"> ... </a></li>
</ul>
<div class="content align-right">
<div id="tab1" class="active"> ... </div>
<div id="tab2"> ... </div>
</div>
</div>
Default position is horizontal but if you want vertical position add the class .vertical to tabs For example:
You can alter the radius of corners and size of tables. For to add the rounded corners you can add .bradius-x class to table tag.
You can alter the radius of corners and size of tables. For to add the rounded corners you can add .bradius-x class to table tag.
You can alter the radius of corners and size of tables. For to add the rounded corners you can add .bradius-x class to table tag.
<div class="tabs vertical">
<ul>
<li><a href="#tab1"> ... </a></li>
<li><a href="#tab2"> ... </a></li>
</ul>
<div class="content box">
<div id="tab1" class="active"> ... </div>
<div id="tab2"> ... </div>
</div>
</div>
If you want to deafault open view some section in same time add the class .active to section of <li> and to content of this <div>.
You can round the corners and alter size of sections of accordion.
For to alter the radius of corners add the class .bradius-x (1,2,3,4) to tab of <li>.
For to alter the size of sections add the classes .small , .medium, .large, .xlarge to tabs div
Add the custom icon class to li > a and you must use custom icon class from icon bar. For example:
You can alter the radius of corners and size of tables. For to add the rounded corners you can add .bradius-x class to table tag.
You can alter the radius of corners and size of tables. For to add the rounded corners you can add .bradius-x class to table tag.
You can alter the radius of corners and size of tables. For to add the rounded corners you can add .bradius-x class to table tag.
<div class="tabs medium">
<ul>
<li><a href="#tab1" class="icon-brain"> ... </a></li>
<li><a href="#tab2" class="icon-lab"> ... </a></li>
</ul>
<div class="content box">
<div id="tab1" class="active"> ... </div>
<div id="tab2"> ... </div>
</div>
</div>