Home › Forums › CSS › [Solved] Problem with IE and Body not adjusting height › Re: [Solved] Problem with IE and Body not adjusting height
June 15, 2010 at 6:22 pm
#77555
Member
Change this:
Code:
#right {
float:right;
height:100%;
padding:10px;
width:675px;
}
float:right;
height:100%;
padding:10px;
width:675px;
}
To this:
Code:
#right {
float:right;
padding:10px;
width:675px;
}
float:right;
padding:10px;
width:675px;
}