I have managed to improve button element consistency somewhat with CSS, but IE7 is still misbehaving. Button width is 2px greater in IE7 and button height is 4px greater in IE7.

See: http://jsfiddle.net/ZJQN2/2/ using IE7

All other browsers seem to be consistent.

How can I fix this, it is the height that is causing me the grief!

link|improve this question

feedback

1 Answer

you can use hack and add special css property that will work only with ie:

 *+html .yourDiv{height: XXpx;}

Just use 4px lower value if this is causing the problem

if you are more interested into hacks for IE, consider visiting this link with css hacks for IE, which I have already given as answer for similar problem

link|improve this answer
2  
ohw, this is a terrible suggestion. If anything Conditional Comments are the better way to target older IE versions. The hacks you suggest always seem to bite back after a little while, and are a hell for maintainability. quirksmode.org/css/condcom.html – Bazzz Aug 9 '11 at 14:04
@mkk I want to avoid defining a specific button height for various reasons. I am happy to include ie7.css (by PHP detection), but I need to force IE7 to fall inline with every other browser. I cannot go introducing heights for all browsers just to please IE7. – Lea Hayes Aug 9 '11 at 14:25
@Bazzz: I agree, everything is written inside the link. – mkk Aug 9 '11 at 14:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.