7.24.2008

IE, input button double padding

IE 下的又一個 bug。padding double 是IE著名的bug,一般針對這個問題的解決方案是將上層 box 設為 display: inline-block,不過這個方法在 input 中不適用,在 hlb 的協助下,經過一番折騰,終於找到針對 input 中的解決方案:

input button {
width: auto;
overflow: visible;
}

1 則留言:

匿名 提到...

Thank you very much. This solved the double padding problem on buttons for me. I only needed to add overflow: visible; though.