How to create Tabs using HTML and CSS

Netshop-Isp

Member
Tabs can be really useful especially for content-crowded web sites. You can save plenty of space just by placing your block of content in tabs and displaying one block at a time in the same place.

The content that you break-up in tabs, though, should be somehow relevant. For example, you can separate in tabs content about Weather Forecasting; tabs could be cities in your country, or forecast days.

If you are in the web hosting business, you might want to "tabularize" the different type of web hosting plans you offer, like Shared Web Hosting, VPS Hosting, Cloud Hosting, Dedicated Servers etc.

However, grouping content in tabs can be a “double-edged sword”. As the content is being compact in one tab, other tabs’ content is hidden. If, for example, you are running an e-commerce website that offers technology products like laptops, groupin the various laptop models will forbid potential customers from comparing the laptop features!

Now that we have discussed the importance and value of tabs in a website, lets proceed to the technical side of things: How to create tabs using HTML and CSS. The following example is for a horizontal tab area. We will create the tabs without any images; pure css and html and a small bit of javascript.

In the css file create the following classes:

Code:
[B]#Tabs ul[/B] {
padding: 0px;
margin: 0px;
margin-left: 10px;
list-style-type: none;
}

[B]#Tabs ul li [/B]{
display: inline-block;
clear: none;
float: left;
height: 24px;
}

[B]#Tabs ul li a[/B] {
position: relative;
margin-top: 16px;
display: block;
margin-left: 6px;
line-height: 24px;
padding-left: 10px;
background: #f6f6f6;
z-index: 9999;
border: 1px solid #ccc;
border-bottom: 0px;

[I]/* The following four lines are to make the top left and top right corners of each tab rounded. */[/I]
-moz-border-radius-topleft: 4px;
border-top-left-radius: 4px;
-moz-border-radius-topright: 4px;
border-top-right-radius: 4px;
[I]/* end of rounded borders */[/I]

width: 130px;
color: #000000;
text-decoration: none;
font-weight: bold;
}

[B]#Tabs ul li a:hover[/B] {
text-decoration: underline; [I]// a very simple effect when [/I]hovering the mouse on tab
}

[B]#Tabs #Content_Area[/B] { [I]// this is the css class for the content displayed in each tab[/I]
padding: 0 15px;
clear:both;
overflow:hidden;
line-height:19px;
position: relative;
top: 20px;
z-index: 5;
height: 150px;
overflow: hidden;
}

[B]p[/B] { padding-left: 15px; }

That’s all you need to do in the css file. Let’s go to the HTML file now.

Wherever you want to place your horizontal tabs, place the following code:

<div id=”Tabs”>
<ul>
<li id=”li_tab1″ onclick=”tab(‘tab1′)” ><a>Tab 1</a></li>
<li id=”li_tab2″ onclick=”tab(‘tab2′)”><a>Tab 2</a></li>
</ul>
<div id=”Content_Area”>
<div id=”tab1″>
<p>This is the text for tab 1</p>
</div>

<div id=”tab2″ style=”display: none;”> <!– We set its display as none because we don’t want to make this
tab visible by default. The only visible/active tab should be Tab 1 until the visitor clicks on Tab 2. –>
<p>This is the text for tab 2.</p>
</div>
</div> <!– End of Content_Area Div –>
</div> <!– End of Tabs Div –>

At the end of your HTML file place the following javascript code. It is necessary for the tabs switching:

Code:
<script type=”text/javascript”>
function tab(tab) {
document.getElementById(‘tab1′).style.display = ‘none’;
document.getElementById(‘tab2′).style.display = ‘none’;
document.getElementById(‘li_tab1′).setAttribute(“class”, “”);
document.getElementById(‘li_tab2′).setAttribute(“class”, “”);
document.getElementById(tab).style.display = ‘block’;
document.getElementById(‘li_’+tab).setAttribute(“class”, “active”);
}
</script>
 
Thanks for sharing it. Do you have an example of the code being used? I know donkeys regarding CSS so it will be nice to know what the effect would be like. :)
 
Top