Hello,
I am using a base stylesheet for Firefox, and using conditional comments to determine which stylesheet to use for IE browsers - < IE7 and IE7 stylesheets.
I am running a fieldset on some of the pages, however if I insert the code in the Firefox stylesheet;
to force Firefox to render the fieldset corners smooth (without the [tt]border[/tt] property, there is no topline and the corners are misaligned).
However, because this is the main stylesheet, it seems to be loaded aswell, not only the IE specific stylesheets get loaded. So because the [tt]border[/tt] property has been messed with, IE6 & 7 now display the fieldset as sqaured corners.
Anyone care to enlighten me on how to make both versions (IE & FF) of the fieldset appear rounded?
Thanks for your time :>
I am using a base stylesheet for Firefox, and using conditional comments to determine which stylesheet to use for IE browsers - < IE7 and IE7 stylesheets.
I am running a fieldset on some of the pages, however if I insert the code in the Firefox stylesheet;
Code:
fieldset{
-moz-border-radius: 8px;
border: 1px solid #CFCFC5;
}
to force Firefox to render the fieldset corners smooth (without the [tt]border[/tt] property, there is no topline and the corners are misaligned).
However, because this is the main stylesheet, it seems to be loaded aswell, not only the IE specific stylesheets get loaded. So because the [tt]border[/tt] property has been messed with, IE6 & 7 now display the fieldset as sqaured corners.
Anyone care to enlighten me on how to make both versions (IE & FF) of the fieldset appear rounded?
Thanks for your time :>