/ Published in: CSS
CSS - Page Component - Tabbed
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
.tabbed { } .tabbed nav { } .tabbed nav ul { height:40px; border-bottom-width:1px; border-bottom-style:solid; } .tabbed nav ul li { display:inline; float:left; margin-bottom:0; } .tabbed nav ul li a { display:block; float:left; height:29px; padding:10px 20px 0; border-top-width:1px; border-top-style:solid; border-left-width:1px; border-left-style:solid; } .tabbed nav ul li.last a { border-right-width:1px; border-right-style:solid; } .tabbed nav ul li a:hover { } .tabbed nav ul li a.active { height:30px; position:relative; bottom:0; } .tabbed .panes { padding:15px 15px 5px; border-width:1px; border-style:solid; border-top:0 none; } .tabbed .panes .pane { }