IE修复了提交按钮左右两侧的丑陋填充
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IE修复了提交按钮左右两侧的丑陋填充相关的知识,希望对你有一定的参考价值。
To remove that ugly added padding from submit buttons try thiswidth:auto !important; seems to work for IE7
<!--[if lt IE 8]> <style> /* IE6 */ overflow: visible; /* remove padding from left/right */ width:0; /*remove the remaining space in IE6*/ } /* IE7 */ *:first-child+html input.button{ overflow: visible; /* remove padding from left/right */ width:auto !important; } </style> <![endif]--> <input class="button" type="submit" value="IE567 sux" />
以上是关于IE修复了提交按钮左右两侧的丑陋填充的主要内容,如果未能解决你的问题,请参考以下文章