Archive for the ‘Coding’ tag
CSS code:
.float_half_left
{
width: 50%;
float: left;
overflow: hidden;
}
In this example width: 50% doesn’t work in IE7. But it starts working when you do these changes:
div.float_half_left
{
float: left;
overflow: hidden;
width: 50%;
}
Happy CSSing
