如何使用HTML使网页高度适合屏幕高度?

有多种方法可以使网页高度适合屏幕高度-

给出相对高度-

html, body {
   height: 100%;
}

您还可以给出固定的位置-

#main
{
   position:fixed;
   top:0px;
   bottom:0px;
   left:0px;
   right:0px;
}

您还可以使用视口高度来实现您的目的-

height: 100vh;