Advertisement
Guest User

Untitled

a guest
Feb 20th, 2012
363
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.84 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style>
  4. #rightbox {
  5. width: 300px;
  6. height: 500px;
  7. float: left;
  8. background-color: yellow;
  9. }
  10.  
  11. #leftbox {
  12. width: 100px;
  13. height: 500px;
  14. float: left;
  15. background-color: red;
  16. }
  17.  
  18. .subname {
  19. background-color: green;
  20. }
  21.  
  22. .subname:hover div{
  23. padding: 3px;
  24. background-color: #CCCCCC;
  25. border-radius: 5px;
  26. display: block;
  27. position: absolute;
  28. margin: -20px 0 0 60px;
  29. z-index: 100;
  30. float: left;
  31. opacity: 0.5;
  32. }
  33.  
  34. .subpath {
  35. display: none;
  36. }
  37. </style>
  38. </head>
  39. <body>
  40. <div id="leftbox">
  41.   <div class="subname">
  42.    Cats
  43.    <div class="subpath">/category/cats</div>
  44.   </div>
  45.   <div class="subname">
  46.    Dogs
  47.    <div class="subpath">/category/dogs</div>
  48.   </div>
  49.   <div class="subname">
  50.    Other Animals
  51.    <div class="subpath">/category/other</div>
  52.   </div>
  53. </div>
  54. <div id="rightbox">
  55. lore ipsum
  56. </div>
  57. </body>
  58. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement