The DIV elements height is not growing even after I set the height property as auto.please see the CSS snippet below
#main_site {
position: absolute;
background-position: center;
top: 295px;
width: 950px;
background-color: #FFF;
height: auto;
}
I have one image in in the content DIV, the image align property is right, but in IE8, the image showing left.
<p><img src="images/image.jpg" align="right" hspace="5" alt="images..." />
The above code is working fine in Firefox, but NOT working in IE8.
Please correct me if I did any mistake.
try adding
float:left;Should do the trick