KaoS Kontrol KaoS

Contemporary Kaptenship Theories

IE stands for “Idiotic Engagements”

March 13th, 2008 at 4:51 pm

Topic: ,

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

without comments

Leave a Reply