Hej Udviklere..
Jeg er igang med at lave nogle simple runde bokse, som gerne skulle kunne virke i alle browsere..
Koden sådan her ud:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
<style type="text/css">
body {
background-color:blue;
}
.boksindhold {
width:250px;
background-color:white;
border:none;
padding: 10px;
}
.boks {
margin:0px;
width:280px;
background-color:white;
border:none;
padding:0px;
}
</style>
</head>
<body>
<div class="boks">
<img src="opskygge.gif" width="280px" height="15px" alt="skygge"/>
<div class="boksindhold">
hua
</div>
<img src="nedskygge.gif" width="280px" height="15px" alt="skygge"/>
</div>
</body>
</html>
Problemet et at classen "boks" fortsætter?
For at se, hvad problemet er, har jeg lagt det ind her:
http://www.ja-ki.at/bokslige.phpNogen der kan forklare mig, hvad jeg har gjort forkert?
Tak for hjælpen!