Forum Moderators: not2easy
I have a div floating right within a wrapper which has a style of overflow:auto.
This is working well in firefox & safari but isnt working in ie6 or ie7 - the background pic stays in position but the text flows downwards outside of the div.
I did inititally have a problem with an unwanted scroll bar appearing at the bottom of the div in IE but have since fixed this with a overflow-x:hidden style.
Here is my css:
#content_treatments {
width:490px;
height:560px;
overflow-x:hidden;
overflow-y:auto;
background: url(images/pic_treatments.jpg);
background-repeat:no-repeat;
font-family:"Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
font-weight:normal;
font-size:11px;
color:#4c517f;
padding:20px 130px 20px 120px;
margin-left:10px;
margin-top:10px;
float:right;
} Thanks in advance!