实战-1 背景图片实战
怎么样把一个大的背景图片完整的显示在网页中。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>小米背景定位案例</title>
<style type="text/css">
body{
margin: 0;
}
.bgi{
width: 100%;
height: 1080px;
background-image: url("./5wj2d3.jpg");
background-repeat: no-repeat;
background-position: center top;
}
</style>
</head>
<body>
<div class="bgi"></div>
</body>
</html>
注:以上background属性值可以写成一行代码
background: url('./5wj2d3.jpg') no-repeat center top;

浙公网安备 33010602011771号