大家好,又见面了,我是你们的朋友全栈君。
用什么代码实现?不允许有白色底色产生,因为手机高度不一样
设计图要标准(750)确认是背景图(通屏底图)应用场景:移动端宣传页面或者活动页面
错误的写法:加到div中结合图片设置min-height,但是页面不会回弹
html,body{
width:100%;
height:100%
}
body{
font-family: "华文细黑";
background:url("../img/Flyer-bg.png") no-repeat;
background-size: 100%;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<div id="Layer1" style="position:fixed; left:0px; top:0px; width:100%; height:100%">
<img src="https://www.qianbuxian.com/uploads/banners/20171214085954_shouye5.jpg" width="100%" height="100%"/>
</body>
</html>
display:flex与margin:auto的强行组合
<div class="center-layout">
<div></div>
</div>
.center-layout {
display: flex;
width: 400px;
height: 400px;
background-color: #f66; div {
margin: auto;
width: 100px;
height: 100px;
background-color: #66f;
}
}
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/130355.html原文链接:https://javaforall.cn