css设置背景图自适应高度
程序员文章站
2022-05-01 08:10:08
...
方式一:
body {
width: 100%;
height: 100%;
position: fixed;
z-index: -1;
background-repeat: no-repeat;
background-position: 0px 0px;
background-size: 100% 100%;
}
方式二:使用img标签
img {
position: fixed;
width: 100%;
height: 100%;
display: block;
z-index: -100;
}