搜索

Button Width auto in Browsers

1124

在我所做过中的项目,都基本上是要求按钮自适应。这时,会碰到button在IE7及低版本的IE浏览器的宽度会有默认的一个宽度,且这个宽度比其他IE7+,FF及其他都要长。

Button width auto in browsers

解决方案是设置overflow:visible

Html代码如下

  1. <style type=”text⁄css”>
  2. input{padding:0 0.25em;border:1px solid red;font:12px Arial;}
  3. <⁄style>
  4. <input type=”button” value=”Long buttons in IE are rediculous”⁄>
  5. <br⁄><br⁄>
  6. <input class=”button” type=”button” value=”Long buttons in IE are rediculous”⁄>

同学有话要说吗?