<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>background</title>
<style type="text/css">
.my-style {
width: 100%;
height: 200px;
background-image: url("http://www.runoob.com/try/demo_source/gradient2.png");
background-repeat: repeat-x;
border: 1px solid #ddd;
margin-bottom: 5px;
}
.my-style2 {
width: 100%;
height: 400px;
background-image: url("http://www.runoob.com/try/demo_source/img_tree.png");
background-repeat: no-repeat;
background-position: right top;
border: 1px solid #ddd;
margin-bottom: 5px;
}
.my-style3 {
width: 100%;
height: 400px;
background: #8cd6f5 url("http://www.runoob.com/try/demo_source/img_tree.png") no-repeat center bottom;
border: 1px solid #ddd;
margin-bottom: 5px;
}
.my-style4 {
width: 100%;
height: 400px;
background: #8cf599 url("http://www.runoob.com/try/demo_source/img_tree.png") no-repeat center bottom;
background-size: 100px 250px;
background-position-y: 20px;
border: 1px solid #ddd;
margin-bottom: 5px;
}
</style>
</head>
<body>
<div class="my-style"></div>
<div class="my-style2"></div>
<div class="my-style3"></div>
<div class="my-style4"></div>
</body>
</html>
![](https://img-blog.csdn.net/20171124180504869?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQveHV0b25nYmFv/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center)