<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>background-size</title>
<link rel="stylesheet" type="text/css" href="css/reset.css"/>
<style type="text/css">
div{
width: 500px;
height: 500px;
border:5px solid pink;
margin:50px;
background:url(images/queen1.jpeg) no-repeat;
}
.box1{
background-size:auto;//auto的意思是:按照本来的尺寸显示
}
.box2{
background-size:300px 100px;//背景图像的高度和宽度,//background-size:300px 100px;宽300px 高100px
}
.box3{
background-size:50% 50%;//以父元素的百分比来设置背景图像的宽度和高度。
}
.box4{
background-size: cover;
/*把背景图像扩展至足够大,以使背景图像完全覆盖背景区域。
背景图像的某些部分也许无法显示在背景定位区域中。等比例扩大.
如果图片太大了就xy等比例缩小,这样也会使一些部分看不到
*/
}
.box5{
background-size: contain;
/*记住,不管图片多大还是多小都是完整诠释在边框中的*/
}
.box6{
background-size: 300px;//高宽都是300px
}
</style>
</head>
<body>
<div class="box1"></div>
<div class="box2"></div>
<div class="box3"></div>
<div class="box4"></div>
<div class="box5"></div>
<div class="box6"></div>
</body>
</html>