HTML设置一个空div,用来放置背景图片。
<body> <div class=“main”></div> </body>
(1)方法一:高度100%
html,body{ margin:0; height:100%; } .main{ height:100%; background:url(‘./bg.png‘) no-repeat ; }
(2)方法二:高度100vh
.main{ height:100vh; width:100vw; }
原文地址:https://www.cnblogs.com/xmlearning/p/9829486.html
时间: 2024-11-10 01:03:48