Der er et eksempel, jeg har skrevet masser af ganege, men vi tager det lige én gang til for prins Knud :)
Dette vises korrekt i IE og FF:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd"><head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
<style type="text/css">
div {
width: 200px;
height: 200px;
background: yellow;
}
.withBorder {
border: 75px solid red;
}
</style>
</head>
<body>
<div>Test</div>
<div class="withBorder">Test</div>
</body>
</html>
Dette vises korrekt i FF - men forkert i IE:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
<style type="text/css">
div {
width: 200px;
height: 200px;
background: yellow;
}
.withBorder {
border: 75px solid red;
}
</style>
</head>
<body>
<div>Test</div>
<div class="withBorder">Test</div>
</body>
</html>