2025年01月12日 建站教程
css语法中有哪些属性可以设置背景图片,满屏自适应?下面web建站小编给大家简单介绍一下具体用法!
方法一:
body{
margin:0;
padding:0;
background: url(images/bg.png) no-repeat;
background-size:100% 100%;
background-attachment:fixed;
}
方法二:
body{
margin:0;
padding:0;
background: url("bg.png") no-repeat;
height:100%;
width:100%;
overflow: hidden;
background-size:cover;//或者background-size:100%;
}
本文链接:http://so.lmcjl.com/news/21186/