so, i’ve got some nested divs which i’ve assigned speciffic pixel sizes to, but in netscape7.02, the pixel sizes are increasing, and throwing off my design!!
for example (see full code below) i’ve got one div, with a hieght:400px; and width:200px;
but when viewed in NS7.02… it seems to increase to aprox hieght:422px; and width:222px;
does anybody know why it does this, and whats the fix?
#newsdiv{
width:200px;
height: 400px;
min-height: 400px;
margin-top: 10px;
padding: 10px;
background-color: #fff;
background-image:none;
border-style: dashed;
border-width: 1px;
border-color: #000;
float:left;
display:inline;/* ie double margin fix*/
font-size: 10px;
font-weight: bold;
font-family: verdana, arial;
text-align: justify;
color: #ccc;
text-align: left;
}
* html #newsdiv, * html #newsdiv{height:400px}/* for ie*/