***相应效果
***相关图片
***相关代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.box1 {
height: 500px;
width: 800px;
background: url(images/img3.jpg) no-repeat;
border: 2px solid black;
/*图片尺寸:auto 长度值 cover:覆盖 contains:即将背景图片等比缩放至某一边紧贴容器边缘为止 */
background-size: auto;
}
</style>
</head>
<body>
<div class="box1"></div>
</body>
</html>