mik28 >> Tak for points :)
nielle >> Du kan f.eks. prøve at lege lidt med dette doku:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"
http://www.w3.org/TR/html4/loose.dtd"><html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>TITLE</title>
<style type="text/css">
body, html {
height: 100%;
margin: 0;
padding: 0;
background-color: buttonface;
}
#menu {
width: 140px;
margin: 20px;
border: 1px solid;
border-color: threedshadow threedhighlight threedhighlight threedshadow;
}
#menu a {
font: 11px tahoma, sans-serif;
width: 118px;
padding: 1px 10px 2px 10px;
display: block;
color: buttontext;
background-color: buttonface;
border: 1px solid;
border-color: threedhighlight threedshadow threedshadow threedhighlight;
text-decoration: none;
cursor: default;
}
#menu a:hover {
color: highlighttext;
background-color: highlight;
text-decoration: none;
}
#menu a:active {
color: buttontext;
background-color: threedlightshadow;
border-color: threedshadow threedhighlight threedhighlight threedshadow;
padding: 2px 9px 1px 11px;
text-decoration: none;
}
#listBox {
width: 140px;
margin: 20px;
border: 1px solid;
border-color: threedshadow threedhighlight threedhighlight threedshadow;
}
#listBox a {
font: 11px tahoma, sans-serif;
width: 120px;
padding: 1px 10px 2px 10px;
display: block;
color: windowtext;
background-color: window;
text-decoration: none;
cursor: default;
}
#listBox a:hover {
color: highlighttext;
background-color: highlight;
text-decoration: none;
}
#listBox a:active {
color: highlighttext;
background-color: highlight;
text-decoration: none;
}
</style>
</head>
<body>
<div id="menu">
<a href="#">MenuLink 1</a>
<a href="#">MenuLink 2</a>
<a href="#">MenuLink 3</a>
<a href="#">MenuLink 4</a>
<a href="#">MenuLink 5</a>
</div>
<div id="listBox">
<a href="#">ListLink 1</a>
<a href="#">ListLink 2</a>
<a href="#">ListLink 3</a>
<a href="#">ListLink 4</a>
<a href="#">ListLink 5</a>
<a href="#">ListLink 6</a>
</div>
</body>
</html>