horizontaal menu css


/ Published in: CSS
Save to your folder(s)



Copy this code and paste it in your HTML
  1. #navigatie {
  2. text-align: center;
  3. }
  4. #navigatie ul{
  5. background-color: #F60;
  6. border: 1px solid black;
  7. width: 100%;
  8. padding: 0;
  9. margin: 0;
  10. white-space: no-wrap;
  11. }
  12. #navigatie ul li{
  13. display: inline;
  14. }
  15. #navigatie ul li a{
  16. padding-left: 1em;
  17. padding-right: 1em;
  18. font-size: 12px;
  19. font-family: Arial, Helvetica, sans-serif;
  20. text-decoration: none;
  21. color: white;
  22. }
  23. #navigatie ul li a:hover{
  24. color: #999999;
  25. }

URL: http://www.html-site.nl/horizontaal_menu.php

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.