gpt4 book ai didi

html - 如何阻止 IE 创建像素化按钮?

转载 作者:行者123 更新时间:2023-11-28 04:43:29 25 4
gpt4 key购买 nike

我知道我以前遇到过这个,但出于某种原因,IE 决定像素化我的提交按钮。

有人知道如何解决这个问题吗?

最佳答案

像素化通常只出现在 IE6 和 IE7 中,因为它在 IE8 中已修复: Bug 101

诀窍是将 CSS 应用于按钮...

/* Apply CSS class "button" to your input buttons */
.button{
width:auto; /* fix stretching in IE for 16-20 char buttons */
overflow:visible; /* fix stretching in IE for 16-20 char buttons */
padding-left:4px; /* force sensible padding in IE */
padding-right:4px; /* force sensible padding in IE */
}

这并不能解决所有问题,但肯定可以将影响降到最低。

下面的屏幕截图显示所有按钮(应用了样式)都有“可观的”填充(例如,它不会疯狂​​增长)。另请注意,在某些时候按钮仍然会失效并像素化......但你可以在它们失效之前挤进更多的字符。 (最多 25 个字符与 19 个字符...取决于字体系列和大小)

IE Button stretch partial fix http://img523.imageshack.us/img523/3990/iebuttons.png

关于html - 如何阻止 IE 创建像素化按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/809743/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com