Advertisement
dimaslanjaka

floated right menu

Mar 9th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.61 KB | None | 0 0
  1.  
  2. <style>
  3. ul {
  4.     list-style-type: none;
  5.     margin: 0;
  6.     padding: 0;
  7.     overflow: hidden;
  8.     background-color: #333;
  9. }
  10.  
  11. li {
  12.     float: left;
  13. }
  14.  
  15. li a {
  16.     display: block;
  17.     color: white;
  18.     text-align: center;
  19.     padding: 14px 16px;
  20.     text-decoration: none;
  21. }
  22.  
  23. li a:hover:not(.active) {
  24.     background-color: #111;
  25. }
  26.  
  27. .active {
  28.     background-color: #4CAF50;
  29. }
  30. </style>
  31.  
  32. <ul>
  33.   <li><a href="/">Home</a></li>
  34.   <li><a href="/sitemap">Sitemap</a></li>
  35.   <li><a href="/contact">Contact</a></li>
  36.   <li style="float:right"><a class="active" href="/about">About</a></li>
  37. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement