IE 6.0 højde på 1px i top div?
Problemet er kun tilsted i IE 6.0. Men det driller mig stadig.Jeg skal bruge en <div> med en højde på 1px. Div skal være tom. Dog får min <div> en højde på 2px i IE 6.0. Hvis jeg derimod indsætter en transparent gif med højden 1px virker det. Er det ikke muligt vha. Stylesheet at tilpasse højde, så den kun er 1px uden at skulle bruge en transparent gif?
Mvh
Stig
<!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" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>[test]</title>
<style>
.Box-top { height:1px;width:483px; font-size:1px; margin:0 0 0 1px; background:blue;}
.Box-container { width:435px; padding:12px 25px 2px 25px; background:cyan;}
.Box-bottom { height:1px;width:483px; font-size:1px; margin:0 0 0 1px; background:blue; }
</style>
</head>
<div class="Box-top"></div>
<div class="Box-container"><p>Dolore commodo praesent dolor tation aliquip lobortis praesent dolor tation aliquip lobortis praesent dolor tation aliquip lobortis praesent dolor tation aliquip lobortis</p></div>
<div class="Box-bottom"><img src="/images/transparent.gif" height="1" alt=""></div>
</body>
</html>