1

这个问题看起来像,我要求一个代码,但事实并非如此。我用谷歌搜索了很多次,然后登陆的页面并没有告诉我我想要什么。在谷歌中找不到它可能是我的坏事。

我在某个地方看过它,可能在某个网站上,我不记得了

我有六个png文件,即

top_right.png、top_left.png、bottom_right.png、bottom_left.png、horizo​​ntal.png、verical.png

我想要做的是一个盒子,用上面的图片做边框。

我认为它必须与背景位置和百分比有关,但我找不到怎么做?

4

1 回答 1

1

使用逗号分隔它们,例如:

body {
    background-image: url(bottom.png), url(top-right.png);
    background-position: center bottom, right top;
    background-repeat: no-repeat;
}
于 2013-04-09T04:57:35.903 回答