Is it possible to create, for instance, a box model hack while using in-line CSS?
For example:
<div id="blah" style="padding: 5px; margin: 5px; width: 30px; /*IE5-6 Equivalent here*/">
Thanks!
|
|
|||
|
|
|
You can use the "prefixing" hack in inline styles as well:
Just make sure you put the IE hacks at the end of the style attribute. However I second the opinion that inline styles should be avoided when possible. Conditional comments and a separate CSS file for Internet Explorer seem to be the best way to handle such issues. |
||
|
|
|
|
Without arguing for or against CSS hacks, personally if I needed to do something like that, I would prefer to use a conditional comment:
|
|||
|
|
|
|
I'd go outside - slap a class on that element, or use the ID you have, and handle the styling externally. I'd also concur with the conditional comments answers preceding mine. That said: As an absolute last resort, you can use the following style hacks to target <= IE6, and even IE7. The trouble comes when/if they fix IE8 to defeat your hack.
Good luck. |
||||
|
|
|
The most appropriate answer is don't. (Edit: to be clear, I mean don't do it inline, I don't mean don't use CSS hacks.) Edit: This doesn't work, IE ignores the conditional comment. Leaving the answer here to not be a bastard. The next most appropriate answer is conditional comments:
|
||||||||
|
|
|
Keep in mind that IE 6 needs the box model hack in quirks mode but not in standards mode. IE 5 and IE 5.5 need the BMH all the time. So if you're in standards mode, you'll need to use something like the original (The content of your question suggests to me that your page renders in quirks mode.) |
||
|
|
|
|
Yeah like everyone above, if you can avoid doing it inline do!! But if you really need to go inline then parser filters are probably your best bet, these are certain characters you can use on properties such as the underscore hack in ie6
ie6 will still get the underscored styles, everyone else will just ignore them! There is also using !important instead of underscore. have a play around and see what happens, but again like above, try and avoid like the plague :) |
||
|
|