可以有两个背景图片吗?例如,我想有一个图像在顶部重复(repeat-x),另一个在整个页面重复(repeat),其中一个在整个页面是后面的一个在顶部重复。
我发现我可以通过设置html和body的背景来实现两个背景图像的预期效果:
html {
background: url(images/bg.png);
}
body {
background: url(images/bgtop.png) repeat-x;
}
这是“好的”CSS吗?有没有更好的方法?如果我想要三个或更多的背景图像呢?
我发现在一个div中使用两种不同的背景图像的最简单的方法是用这行代码:
body {
background:url(image1.png) repeat-x, url(image2.png) repeat;
}
显然,这并不一定只适用于网站的主体,你可以使用任何你想要的div。
希望有帮助!如果有人需要进一步的指导或帮助,我的博客上有一篇文章更深入地讨论了这个问题——http://blog.thelibzter.com/css-tricks-use-two-background-images-for-one-div。
使用这个
body {
background: url(images/image-1.png), url(images/image-2.png),url(images/image-3.png);
background-repeat: no-repeat, repeat-x, repeat-y;
background-position:10px 20px , 20px 30px ,15px 25px;
}
一个简单的方法来调整你每个图像的位置与背景-位置:和设置重复属性与背景-重复:为每个图像单独
我发现在一个div中使用两种不同的背景图像的最简单的方法是用这行代码:
body {
background:url(image1.png) repeat-x, url(image2.png) repeat;
}
显然,这并不一定只适用于网站的主体,你可以使用任何你想要的div。
希望有帮助!如果有人需要进一步的指导或帮助,我的博客上有一篇文章更深入地讨论了这个问题——http://blog.thelibzter.com/css-tricks-use-two-background-images-for-one-div。
如果你想要多个背景图像,但不希望它们重叠,你可以使用下面的CSS:
body {
font-size: 13px;
font-family:Century Gothic, Helvetica, sans-serif;
color: #333;
text-align: center;
margin:0px;
padding: 25px;
}
#topshadow {
height: 62px
width:1030px;
margin: -62px
background-image: url(images/top-shadow.png);
}
#pageborders {
width:1030px;
min-height:100%;
margin:auto;
background:url(images/mid-shadow.png);
}
#bottomshadow {
margin:0px;
height:66px;
width:1030px;
background:url(images/bottom-shadow.png);
}
#page {
text-align: left;
margin:62px, 0px, 20px;
background-color: white;
margin:auto;
padding:0px;
width:1000px;
}
使用这个HTML结构:
<body
<?php body_class(); ?>>
<div id="topshadow">
</div>
<div id="pageborders">
<div id="page">
</div>
</div>
</body>
#example1 {
background: url(http://www.w3schools.com/css/img_flwr.gif) left top no-repeat, url(http://www.w3schools.com/css/img_flwr.gif) right bottom no-repeat, url(http://www.w3schools.com/css/paper.gif) left top repeat;
padding: 15px;
background-size: 150px, 130px, auto;
background-position: 50px 30px, 430px 30px, 130px 130px;
}
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div id="example1">
<h1>Lorem Ipsum Dolor</h1>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>
<p>Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.</p>
</div>
</body>
</html>
我们可以使用CSS3轻松地添加多个图像。我们可以在这里阅读详细信息http://www.w3schools.com/css/css3_backgrounds.asp