Doctype og clientHeight som ikke virker
Jeg har problemer med at få document.body.clientHeight til at virke når der står (http://www.w3.org/TR/html4/loose.dtd)men hvorfor??
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Nyt Dokument</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<div id="PB" style="width:100px;background-color:White;border-style:inset;
border-width:2px;font-family:serif;font-size:12px;position:absolute;
left:expression(parseInt(document.body.clientWidth/2-PB.offsetWidth/2));
top:expression(parseInt(document.body.clientHeight/2-PB.offsetHeight/2));">
<div style="width:30px;background-color:LightSteelBlue;"> </div>
</div>
</body>
</html>
