Advertisement
Guest User

Untitled

a guest
Nov 4th, 2011
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.49 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <style type="text/css">
  5.     div.foo:hover+h1
  6.     {
  7.       background:#ff0000;
  8.     }
  9.  
  10.     div.foobar
  11.     {
  12.       display: none;
  13.     }
  14.    
  15.     div.bar:hover div.foobar
  16.     {
  17.       display: block;
  18.     }
  19.     </style>
  20.   </head>
  21.   <body>
  22.  
  23.   <div class="foo">
  24.     Hover me
  25.   </div>
  26.  
  27.   <h1>And I should turn red</h1>
  28.  
  29.   <div class="bar">
  30.     hover me as well
  31.     <div class="foobar">
  32.       foobar
  33.     <div/>
  34.   <div/>
  35.   </body>
  36. </html>
  37.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement