Hoi,
ik wil mijn navigatie bar over de hele breedte alleen dat lukt niet. Als ik de width op 100% zet gaan ze boven elkaar.
ik wil mijn navigatie bar over de hele breedte alleen dat lukt niet. Als ik de width op 100% zet gaan ze boven elkaar.
HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>voorbeeld</title>
<style>
#header {
text-align: center;
Color: black;
background-color: white;
padding:5px;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;]
display: inline;
}
li {
display: inline;
float: left;
}
a:link, a:visited {
display: block;
width: 150px;
height: 38px;
font-weight: bold;
color: black;
background-color: #eeeeee;
text-align: center;
padding: 10px;
text-decoration: none;
text-transform: uppercase;
}
a:hover, a:active {
background-color:black;
color: white;
}
</style>
</head>
<body>
<div id="header"><h1 id="home">home</h1></div>
<div>
<ul>
<li><a href="pagina1.htm">foto's</a></li>
<li><a href="pagina2.htm">login</a></li>
<li><a href="index.htm">home</a></li>
<li><a href="http://www.weeronline.nl/Europa/Nederland/Nederland/4057473"> Weather</a></li>
<li><a href="contact.htm">Contact</a></li>
</ul>
</div>
</body>
</html>
Laatst bewerkt door een moderator: