Is it possible to make my DIV Height(.banner2 in this case) less than 20 px in IE6 without using Javascript. IE 6 is displaying my DIV with a minimum Height of 20px even when I have declared a lesser value in my CSS (refer to .banner2 below). Logic has failed me, damn IE 6.
HTML:
Code:
<div id="wrapper">
<div id="banner"><a href="#" class="logo"><img src="../images/fctimeslogo.gif" alt="FCTimes" width="161" height="46" border="0" ></a>
<div class="banner2"></div>
CSS:
Code:
#wrapper {
width: 880px;
background-color:#FFFFFF;
text-align: left;
border:1px 1px 1px 1px solid #CCCCCC;
border-top:0px;
}
#banner {
width: 100%;
height: 71px;
background-color:#FFFFFF;
}
.logo {
margin-left: 12px;
margin-top: 10px;
float: left;
}
.banner2 {
width:100%;
height:7px;
background-color:#A4300D;
}
Bookmarks