Created
February 21, 2012 09:53
-
-
Save adamvr/1875550 to your computer and use it in GitHub Desktop.
Tab template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #tablist{ | |
| padding: 3px 0; | |
| margin-left: 0; | |
| margin-bottom: 0; | |
| margin-top: 0.1em; | |
| font: bold 12px Verdana; | |
| border-bottom: 1px solid gray; | |
| } | |
| #tablist li{ | |
| list-style: none; | |
| display: inline; | |
| margin: 0; | |
| } | |
| #tablist li a{ | |
| text-decoration: none; | |
| padding: 3px 0.5em; | |
| margin-right: 3px; | |
| border: 1px solid #778; | |
| border-bottom: none; | |
| background: white; | |
| } | |
| #tablist li a:link, #tablist li a:visited{ | |
| color: navy; | |
| } | |
| #tablist li a:hover{ | |
| color: black; | |
| background: lightyellow; | |
| border-color: navy; | |
| } | |
| #tablist li a.current{ | |
| background: lightyellow; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ul id="tablist"> | |
| <li><a class="current" href="http://www.cssdrive.com">CSS Drive</a></li> | |
| <li><a href="http://www.yahoo.com">Yahoo</a></li> | |
| <li><a href="http://www.google.com">Google</a></li> | |
| <li><a href="http://www.news.com">News.com</a></li> | |
| </ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment