背景重复似乎在 IE6 中不起作用
我已经在我的页面上应用了这样的背景,
body
{
background:#FFFFFF url('images/color.png') repeat top left;
color:#666666;
font-family:Arial,Helvetica,sans-serif;
font-size:80%;
font-style:normal;
font-variant:normal;
font-weight:normal;
white-space:nowrap;
margin:0 auto;
height:100%;
}
这似乎适用于 IE7、firefox 和 chrome,但肯定不适用于 IE6。
I ve applied a background to my page like this,
body
{
background:#FFFFFF url('images/color.png') repeat top left;
color:#666666;
font-family:Arial,Helvetica,sans-serif;
font-size:80%;
font-style:normal;
font-variant:normal;
font-weight:normal;
white-space:nowrap;
margin:0 auto;
height:100%;
}
This seems to work in IE7,firefox and chrome but certainly not in IE6.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
IE6 讨厌 pngs..:) 更不用说在后台渲染它们了..!你需要某种 PNGFix 来实现这一点。我通常使用 这个
IE6 hates pngs..:) leave alone rendering them in background..! you will need some sort of PNGFix for this.. I usually use this
ie6 不能很好地渲染 png。也许你应该只使用 gif 或 jpg?
ie6 doesnt render pngs well. maybe you should just use a gif or jpg?
你为什么要使用透明的 png 呢?使用 gif 会是一个更好的解决方案
why would you use a transparent png for that? Using a gif would be a much better solution