IE6 右边框 Div 中的背景图像
帮助
我拼命尝试在 Internet Explorer 6 中的 DIV 的右边框上放置背景图像。
到目前为止没有成功。
这是我的 CSS:
.test
{
width: 100px;
border-right: red thin solid;
border-top: red thin solid;
border-left: red thin solid;
border-bottom: red thin solid;
background-position-x: 100%;
background-position-y: 0px;
background: url(roundcorner_righttile_11x11.png);
background-repeat: repeat-y;
}
HTML:
<div class="test">
text
</div>
Div 应该在最后动态扩展。 “100 px”仅用于测试。
也许是因为它是一个 png 文件?
我很感激任何帮助。
Help
I try desperately to place a background image on the right border in a DIV in Internet Explorer 6.
No success so far.
This is my CSS:
.test
{
width: 100px;
border-right: red thin solid;
border-top: red thin solid;
border-left: red thin solid;
border-bottom: red thin solid;
background-position-x: 100%;
background-position-y: 0px;
background: url(roundcorner_righttile_11x11.png);
background-repeat: repeat-y;
}
the HTML:
<div class="test">
text
</div>
The Div should in the End expand dynamically. The "100 px" is just for testing.
Maybe its because its an png file?
I am gratefull for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试:
Try: