IE8 重复 y 失败
我正在为这样的 div 设置背景:
background:transparent url(images/con-left-bg.PNG) Repeat-y;
但是它填充了整个空间,而不是仅垂直重复它。有
没有办法解决这个问题,使其适用于 IE8?
I'm setting a background for a div like that:
background:transparent url(images/con-left-bg.PNG) repeat-y;
however it's filling whole space instead repeating it vertically only...
Is there a way to fix that so it'll work for IE8?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试将 CSS 分成单独的
property:value;
对,并在 url 两边加上引号。但请注意,在 IE 中将背景颜色设置为透明有时会变得不稳定。
Try separating out your CSS into separate
property:value;
pairs, and put quotes around the url.But be aware that setting the background-color to transparent sometimes gets wonky in IE.
你忘记了那部分:P,还有另一件事。每个语句都以分号 (;) 结束
you forgot that part :P , and another thing. end every statement with a semicolon(;)