IE8 重复 y 失败

发布于 2024-11-01 01:23:51 字数 168 浏览 1 评论 0原文

我正在为这样的 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 技术交流群。

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

发布评论

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

评论(2

行至春深 2024-11-08 01:23:51

尝试将 CSS 分成单独的 property:value; 对,并在 url 两边加上引号。

background-image: url('images/con-left-bg.PNG');
background-repeat: repeat-y;
background-color: transparent;

但请注意,在 IE 中将背景颜色设置为透明有时会变得不稳定。

Try separating out your CSS into separate property:value; pairs, and put quotes around the url.

background-image: url('images/con-left-bg.PNG');
background-repeat: repeat-y;
background-color: transparent;

But be aware that setting the background-color to transparent sometimes gets wonky in IE.

落墨 2024-11-08 01:23:51
background-repeat: repeat-y;

你忘记了那部分:P,还有另一件事。每个语句都以分号 (;) 结束

background-repeat: repeat-y;

you forgot that part :P , and another thing. end every statement with a semicolon(;)

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