IE 中按钮的背景图像边距
有人知道为什么按钮背景图像周围有一个边距(大约 1px),仅在 Internet Explorer 中吗?
在 IE 与 Firefox 中尝试此代码:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>test</title>
<style type='text/css'>
button {
background: grey url("http://eagle.phys.utk.edu/guidry/android/images/red_square.png") 0px 0px repeat-x;
border: 1px solid black;
font-size: 24px;
}
</style>
</head>
<body>
<button>LOL</button>
</body>
</html>
以下是它在 IE9(大尺寸)中在我的计算机上的显示方式:
注意:如果我删除(黑色)边框,边距就会消失。
谢谢。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不同的浏览器对按钮标签(和其他标签)有不同的定义。事实上,Chrome 的边距为 2px。您可以通过显式设置边距轻松解决此问题:
更新:
我认为这是字体系列(或其渲染)不同,请尝试:
更新:
没有
我可以重现该问题。在这种情况下,IE 正在 Quirks 模式下运行。测试时是否包含文档类型?
无论如何,你只需要避免怪异模式:http://www.google.dk/search?aq=0&oq=avoid+qui&gcx=c&sourceid=chrome&ie=UTF-8&q=avoid+quirks+mode< /a>
例如,在文档类型之前避免任何内容。
Differnet browsers have different definitions of the button tag (and other tags). In fact, Chrome have a margin of 2px. You can easily solved it by making margin explicit:
Update:
I think it is the font-family (or the rendering of it) which is different, try:
Update:
Without
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
I can reproduce the problem. And in this case IE is running in Quirks mode. Do you include the doctype when you test it?"http://www.w3.org/TR/html4/loose.dtd">
Anyway, you just have to avoid quirks mode: http://www.google.dk/search?aq=0&oq=avoid+qui&gcx=c&sourceid=chrome&ie=UTF-8&q=avoid+quirks+mode
Ex avoid ANYTHING before doctype.
我的代码没有遇到这样的问题,可能是因为你的 ie 版本较旧。
I didn't faced such problem with your code, probably this is because you ie version is older one.
不同的浏览器对于不同的 html 元素有不同的通用样式标准。为了避免这个问题(或者尽你所能地防御它!),你真的应该在你的所有网站中包含一个重置样式表,以尽可能地尝试同步所有浏览器的样式。我发现的最伟大的事情之一是 Erics 存档的想法:
http:// meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/
这通常可以达到目的(在倒数第二个交叉后进行一些小调整)浏览器测试)。
Different browsers have different generic style standards for different html elements. To avoid this problem (or defend against it the best you can!) you should really include a reset style sheet in all your sites to try and synchronise the styles of all browsers best you can. One of the greats I have found is Erics Archived thoughts:
http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/
This typically does the trick (with a few little tweaks after a penultimate cross browser test).