0

我希望从屏幕截图上绘制的线条显示背景:

http://img29.imageshack.us/img29/4707/wjm7.png

我试着用

background : ('path/to/image') 0 650px repeat-y

但是图像的浅色部分移动了,看起来很难看。我想要的只是像屏幕截图一样在网站上显示背景,但底部没有黑色部分。这就是为什么我希望它从红线重复。

现在css是这样的:

background : url('path/to/image') top center
4

2 回答 2

0

You can set px values instead of top

background : url('path/to/image') -430px center;

Repeating the background like this will not be possible. You'll just have to crop your image and use repeat

于 2013-09-05T21:21:34.083 回答
0

我建议使用两个背景。即将可重复部分设置为主体的背景,另一部分作为主容器的背景。

于 2013-09-05T21:39:55.610 回答