Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 28th, 2012  |  syntax: None  |  size: 0.39 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. make heading stretch to fit containe and add > to end
  2. .arrow { float:right; }
  3.        
  4. .container:hover .title, .container:hover .arrow { color:green; }
  5.        
  6. <div class="container">
  7.     <a href="your_link_here">
  8.          <div class="title"> This is a title </div>
  9.          <div class="arrow"> > </div>
  10.     </a>
  11. </div>
  12.        
  13. .container:hover a { color:green; }
  14.        
  15. div:hover span{ background-image:url();}