Er dette en bug
Hej.. jeg sidder og kæmper lidt med et HTML doc.. og jeg forstår ikke hvad og hvorfor det sker.Jeg har indsat en Table som skal være 100% i W og 100% i H.. baggrundsfarven er så bare sat som Grey. Men hvorfor følger baggrunds farven ikke med Table helt til bunden af skærmen, når denne er defineret som værende 100% i H. Prøv selv at teste den i browseren.. På forhånd tak :)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
<meta http-equiv="Content-Language" content="en-us">
<meta name="keywords" content="Test">
<meta name="description" content="Test">
<link rel="shortcut icon" href="Test.ico">
<STYLE type=text/css>
A:link {
Color: #1B1718; Text-Decoration: none
}
A:visited {
Color: #1B1718; Text-Decoration: none
}
A:active {
Color: #1B1718; Text-Decoration: none
}
A:hover {
Color: #1B1718; Text-Decoration: underline
}
body { font-family: Trebuchet MS; font-size: 8pt; color: #1B1718 }
h1 { font-family: Trebuchet MS; color: #1B1718; font-size: 18pt }
h2 { font-family: Trebuchet MS; color: #1B1718; font-size: 12pt }
table { font-family: Trebuchet MS; color: #1B1718; font-size: 8pt }
.notes { font-family: Trebuchet MS; font-size: 7pt; color: #1B1718 }
-->
</style>
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0">
<table border="0" width="100%" cellspacing="0" cellpadding="0" bgcolor="#C0C0C0" height="100%">
<tr>
<td> </td>
</tr>
</table>
</body>
</html>