Internet Explorer is the nightmare of every web-developer. As you go lower and lower with the version numbers (8-7-6) it’s going to make more and more headache for you.
Recently I found a very nasty bug in IE7. When creating a search form, my submit button did not appear as I wished, like in Chrome, Firefox, IE8. Added a default 10px padding to the left and right of the button.
IE7 ignored all of the horizontal padding I specified with css.
After some googling I found the solution:
Before:
<input type=”submit” value=”Submit button NOT OK” style=”padding: 20px;” />
After:
<input type=”submit” value=”Submit button OK” style=”padding: 20px; overflow: visible;” />
Note: the example above is correctly visible only in IE7!

January 19th, 2011
admin
Posted in
Tags:



