views:

39

answers:

1

I like YUI's Tab, to use its look and feel for own tab like implementation we just have to include yui tabs CSS and use markups and css classes and done. example below,

<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.8.0r4/build/tabview/assets/skins/sam/tabview.css" />
<ul class="yui-nav"> 
<li><a href="#tab1"><em>Tab One Label</em></a></li> 
<li class="selected"><a href="#tab2"><em>Tab Two Label</em></a></li> 
<li><a href="#tab3"><em>Tab Three Label</em></a></li>
</ul>

Now i have a site where Microsort's tab tab controls are used and there are some which are old simple tabs. Now i would like to change these old tabs to Microsoft tab structures just by using CSS if possible as we have done above for YUI.

Is that possible to do that using CSS/file? How it can be done for Microsofts tab?