如何使用 HTML 使网页高度适合屏幕高度?
有许多方法可以使网页高度适合屏幕高度 −
给出相对高度 −
html, body {
height: 100%;
}您还可以给出固定定位 −
#main
{
position:fixed;
top:0px;
bottom:0px;
left:0px;
right:0px;
}您还可以使用视口高度来实现您的目的 −
height: 100vh;
广告
有许多方法可以使网页高度适合屏幕高度 −
给出相对高度 −
html, body {
height: 100%;
}您还可以给出固定定位 −
#main
{
position:fixed;
top:0px;
bottom:0px;
left:0px;
right:0px;
}您还可以使用视口高度来实现您的目的 −
height: 100vh;