大家好,又见面了,我是你们的朋友全栈君。
用什么代码实现?不允许有白色底色产生,因为手机高度不一样
设计图要标准(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;
}
}
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/130355.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...