IE修复了提交按钮左右两侧的丑陋填充

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IE修复了提交按钮左右两侧的丑陋填充相关的知识,希望对你有一定的参考价值。

To remove that ugly added padding from submit buttons try this
width:auto !important; seems to work for IE7
  1. <!--[if lt IE 8]>
  2. <style>
  3. /* IE6 */
  4. *html input.button{
  5. overflow: visible; /* remove padding from left/right */
  6. width:0; /*remove the remaining space in IE6*/
  7. }
  8.  
  9. /* IE7 */
  10. *:first-child+html input.button{
  11. overflow: visible; /* remove padding from left/right */
  12. width:auto !important;
  13. }
  14. </style>
  15. <![endif]-->
  16.  
  17. <input class="button" type="submit" value="IE567 sux" />

以上是关于IE修复了提交按钮左右两侧的丑陋填充的主要内容,如果未能解决你的问题,请参考以下文章