您可以调整 HTML 输入按钮的左右填充吗?

发布于 2024-07-13 10:16:26 字数 63 浏览 8 评论 0原文

输入按钮的文本(值)越长,左右填充似乎就越宽(IE)。 显式 CSS 填充似乎没有效果。 有人对此有破解吗?

The longer an input button's text (value) is, the wider the left and right padding seems to get (IE). Explicit CSS padding seems to have no effect. Does anyone have a hack for this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

深居我梦 2024-07-20 10:16:26

是的,试试这个(PS,这个错误在 IE8 中已修复)

padding:1px 4px 1px 4px;/*set to your preferences*/

/*Make IE render reasonably sized buttons*/
overflow:visible;
width:auto;

(请注意,大约 30-50 个字符长的按钮再次开始降级,但它们并不常见)

yes try this (PS this bug is fixed in IE8)

padding:1px 4px 1px 4px;/*set to your preferences*/

/*Make IE render reasonably sized buttons*/
overflow:visible;
width:auto;

(note that buttons that are like 30-50 characters long start to degrade again, but they aren't that common)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文