Hi,
In order to render the same across browsers, I put the following in my web.config file:
I want all browsers to render 4.0 compliant html so my pages look the same across Firefox, Opera, IE, and Safari.
I have seen more intricate browerCaps declarations, but they can miss Opera with its various quirks.
My question is, has anyone done this? Any advice? Is this a good idea or a terrible one?
Thanks for your ideas
CJB
In order to render the same across browsers, I put the following in my web.config file:
Code:
<browserCaps>
TagWriter=System.Web.UI.HtmlTextWriter
</browserCaps>
I want all browsers to render 4.0 compliant html so my pages look the same across Firefox, Opera, IE, and Safari.
I have seen more intricate browerCaps declarations, but they can miss Opera with its various quirks.
My question is, has anyone done this? Any advice? Is this a good idea or a terrible one?
Thanks for your ideas
CJB