Advertisement
MrsMcLead

Horizontal Lists

Feb 12th, 2014
487
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.76 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>
  4. Horizontal Menu
  5. </title>
  6.  
  7. <style type = "text/css">
  8. #horizontalMenu li
  9. {
  10.     list-style-type: none;
  11.     float: left; none;
  12.     width: 60mm;
  13.     text-align: center;
  14.     align: top;
  15.     margin: 0%;
  16. }
  17.  
  18. #horizontalMenu a
  19. {
  20.     text-decoration: none;
  21.     color: white;
  22.     display: block;
  23.     background-color: #AAAAAA;
  24.     border: 1px black solid;
  25.     bottom-border: none;
  26. }
  27.  
  28. #horizontalMenu a:hover
  29. {
  30.     color: red;
  31.     border: 2px blue outset;
  32.     border-bottom: none;
  33. }
  34. </style>
  35.  
  36. <body>
  37. <ul id = "horizontalMenu">
  38.     <li><a href = "FirstLink.html"> First Thing</a></li>
  39.     <li><a href = "Second.html"> Second Thing</a></li>
  40.     <li><a href = "ThirdLink.html"> Third Thing</a></li>
  41.     <li><a href = "FourthLink.html"> Fourth Thing</a></li>
  42.    
  43. </ul>
  44. </body>
  45. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement