Pages

Monday, February 1, 2010

CSS - IE6 Margin Right Bug

Due to a bug in IE6, the CSS property margin-right doesn't work. Instead using this property, it's possible to use:

.right-align-example {
    float: right;
    display: inline;

}

Using theses properties is a good workaround to align correctly components with Internet Explorer 6.

No comments:

Post a Comment