Friday, August 01, 2008

CSS text-align:center not working in FireFox (FF)

The CSS style for any component text-align:center will not work in FireFox (FF) browser. The work around is to have the CSS defined as follows. If you defined the below CSS for body, it will work in both IE and FF. You have to defined both CSS for the body as defined below (one after another) to have cross browser compatibiltiy. It will not work if you asssing only text-align: -moz-center;


body
{
text-align: center;
}

body
{
text-align: -moz-center;
}

-::-

No comments: