在我所做过中的项目,都基本上是要求按钮自适应。这时,会碰到button在IE7及低版本的IE浏览器的宽度会有默认的一个宽度,且这个宽度比其他IE7+,FF及其他都要长。
解决方案是设置overflow:visible
Html代码如下
- <style type=”text⁄css”>
- input{padding:0 0.25em;border:1px solid red;font:12px Arial;}
- <⁄style>
- <input type=”button” value=”Long buttons in IE are rediculous”⁄>
- <br⁄><br⁄>
- <input class=”button” type=”button” value=”Long buttons in IE are rediculous”⁄>
