Skip to content

Instantly share code, notes, and snippets.

@dziudek
Created April 3, 2012 18:00
Show Gist options
  • Save dziudek/2294212 to your computer and use it in GitHub Desktop.
Save dziudek/2294212 to your computer and use it in GitHub Desktop.
Tabs
/**
* 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;
}
<!-- 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>
{"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