在背景图像下重复背景颜色

时间:2014-01-08 15:10:20

标签: html css

我目前有一个特定高度和宽度的图像,我如何设置一个特定的颜色在图像下无休止地运行。

body {
    background-image: location;
    background-color: #fff;
}

我想将背景颜色设置在背景图像之下,而不是整个页面,而只是在它之下。

更新

html有背景色:#red

body background-image:.png image& background-color:#fff;

我希望背景颜色不会溢出html颜色,这是顶部,只是在身体的背景图像下溢出。

3 个答案:

答案 0 :(得分:0)

使用以下代码:

background:#ffffff url(ImageUrl) no-repeat;

答案 1 :(得分:0)

试试这个

background:red url(../img/s.jpg) no-repeat center top;

FIDDLE DEMO

background-color: red;/*...background colour..*/
background-image: url(../img/s.jpg);/*...image source...*/
background-position: center top;/*...position of background image...*/
background-repeat: no-repeat;/*...it will avoid repetition of image..*/

FIDDLE DEMO

答案 2 :(得分:0)

使用此一行代码

body{
    background:#ffffff url('img_tree.png') no-repeat right top;
}

DEMO