Tabs

Tabs are a very nice way of grouping lots of content into a very small space.

Creating a tabbed component is actually a simple task. If you want create tabs add the class .tabs to the <div> For example:

Data in tabular form you can use tables.

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.

Displaying of data in tabular form you can use tables.

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.

For the displaying of data in tabular form you can use tables.

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.

HTML Example
<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>

Align

Align & position of tabs

If you can alter the vertical and horizontal of position of tabs add the classes .right to tabs. For example:

Data in tabular form you can use tables.

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.

Displaying of data in tabular form you can use tables.

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.

For the displaying of data in tabular form you can use tables.

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.

HTML Example
<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>
Vertical tabs

Default position is horizontal but if you want vertical position add the class .vertical to tabs For example:

Data in tabular form you can use tables.

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.

Displaying of data in tabular form you can use tables.

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.

For the displaying of data in tabular form you can use tables.

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.

HTML Example
<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>

Extra Styles

You can to customized style of tabs also

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:

Data in tabular form you can use tables.

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.

Displaying of data in tabular form you can use tables.

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.

For the displaying of data in tabular form you can use tables.

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.

HTML Example
<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>