Advertisement
Guest User

Untitled

a guest
Sep 21st, 2014
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. .tabs {
  2. position: relative;
  3. min-height: 200px; /* This part sucks */
  4. clear: both;
  5. margin: 25px 0;
  6. }
  7. .tab {
  8. float: left;
  9. }
  10. .tab label {
  11. background: #eee;
  12. padding: 10px;
  13. border: 1px solid #ccc;
  14. margin-left: -1px;
  15. position: relative;
  16. left: 1px;
  17. }
  18. .tab [type=radio] {
  19. display: none;
  20. }
  21. .content {
  22. position: absolute;
  23. top: 28px;
  24. left: 0;
  25. background: white;
  26. right: 0;
  27. bottom: 0;
  28. padding: 20px;
  29. border: 1px solid #ccc;
  30. }
  31. [type=radio]:checked ~ label {
  32. background: white;
  33. border-bottom: 1px solid white;
  34. z-index: 2;
  35. }
  36. [type=radio]:checked ~ label ~ .content {
  37. z-index: 1;
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement