This in the process of making a website compatible with IE7.
The main css file defines a “right” property on for a div.
Using the developer tools in IE7, I can fix a display issue by unchecking that “right” property on that div.
I understand the default property needs to be specified for that div in the ie7 specific stylesheet.
I read “auto” is the default value. Niether that (nor “none”, “0”) has the same effect as unchecking the property in the developer tools “style” panel.
How should I proceed?
Thanks 🙂
Workaround: replace the “right” property with a “margin-right”, which provides the same results (in this case) using recent browsers.
IE7 no longer fails to render the element properly and the margin-right works properly.