Guest User

Untitled

a guest
Aug 16th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <div class="menu">home</div>
  2. <div class="menu current">about</div>
  3. <div class="menu">Contact</div>
  4.  
  5. .current:after {
  6. content: '';
  7. position: absolute;
  8.  
  9. width: 0;
  10. height: 0;
  11.  
  12. border: 15px solid;
  13. border-top-color: #292929;
  14.  
  15. top: 100%;
  16. left: 50%;
  17. margin-left: -15px; /* adjust for border width */
  18. }
  19.  
  20. .menu {
  21. Font: whatever;
  22. Background:url("image/parallel.PNG");
  23. }
  24. .current {
  25. Background:URL("image/arrow.PNG");
  26. }
  27.  
  28. <div class="menu">home</div>
  29. <div class="menu current">about</div>
Add Comment
Please, Sign In to add comment