Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. <div id="header-nav">
  2. <ul>
  3. <li><a class="home home-active" href="index.html">HOME</a></li>
  4. <li><a class="about" href="about.html">ABOUT</a></li>
  5. <li><a class="services" href="services.html">SERVICES</a></li>
  6. <li><a class="photos" href="photos.html">PHOTOS</a></li>
  7. <li><a class="quote" href="quote.html">QUOTE</a></li>
  8. <li><a class="contact" href="contact.html">CONTACT</a></li>
  9. </ul>
  10. </div>
  11.  
  12. .home { width: 120px; height: 191px; background: url(../images/home.png) no-repeat 100%; display: block; position: absolute; top: 0; left: 0; -webkit-transition: .3s ease-in-out; -moz-transition: .3s ease-in-out; transition: .3s ease-in-out; text-indent: -9999px; }
  13.  
  14. .home:hover { width: 120px; height: 191px; padding-top: 20px; background-image: url(../images/home-hover.png); }
  15.  
  16. .home-active { width: 120px; height: 191px; background-image: url(../images/home-hover.png); position: absolute; top: 0; left: 0px; padding-top: 0 !important; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement