HTML5 tagget
Vi laver en box –
og sætter en ul- liste ind:
<nav> <ul> <li><a href="index.html">Forsiden</a></li> <li><a href="produkter.html">Produkter</a></li> <li><a href="nyheder.html">Nyheder</a></li> <li><a href="kontakt.html">Kontakt</a></li> </ul> </nav> |
nav { padding: 20px; width: 260px; min-height: 240px; background-color: yellow; float: left; } nav ul li { list-style-type: none; } nav ul li a { padding: 8px; display: block; border:1px solid green; width: 150px; height: 20px; color:green; font-weight: bold; text-decoration: none; margin-bottom: 10px; } nav ul li a:hover { color:red; background-color: blue; } |