Created
April 3, 2012 18:00
-
-
Save dziudek/2294212 to your computer and use it in GitHub Desktop.
Tabs
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
/** | |
* Tabs | |
*/ | |
#tabs { | |
background: #aaa; | |
position: relative; | |
transition: all 1s linear; | |
} | |
#d1, | |
#d2, | |
#d3 { | |
position: absolute; | |
} | |
#d1 { | |
z-index: 1; position: relative; | |
} | |
#d2 { | |
z-index: 2; | |
top: 0; | |
height: 40px; | |
border: 3px solid #a00; | |
} | |
#d3 { | |
z-index: 3; | |
top: 0; | |
height: 50px; | |
border: 1px solid #ccc; | |
} | |
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
<!-- content to be placed inside <body>…</body> --> | |
<div id="tabs"> | |
<div id="d1">Lorem ipsum dolor</div> | |
<div id="d2">Sit amet</div> | |
<div id="d3">Nunciam polunciam</div> | |
</div> |
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
{"view":"split","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment