/ Published in: CSS
In IE6 the padding applied to input boxes can be incorrectly rendered showing no difference in the height of the box. Adding "overflow:visible" seems to fix it.
Referenced Source: http://stackoverflow.com/questions/561904/can-you-tweak-the-left-and-right-padding-on-an-html-input-button
Referenced Source: http://stackoverflow.com/questions/561904/can-you-tweak-the-left-and-right-padding-on-an-html-input-button
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
input { font-size: 1.2em; padding: 10px; overflow:visible; }