Forum Moderators: not2easy
<DIV class="banner">
<img src="pic" height=200>
</DIV>
div.banner{
height: 200px;
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
border-top: black solid 3px;
border-bottom: black solid 3px;
border-right: black solid 3px;
border-left: black solid 3px;
}
to solve the image problem.. make it
display: block;. div.banner img {display: block;}
>>min/max height/width
are not supported by IE however IE treats height like min-height so you might be able to use height for IE and min-height for others. Note that height may need targetted to IE *only* either using a conditional comment or a hack or it will be adhered to by compliant browsers thus overriding the min-height rule in them
Suzy