position 屬性指定用於元素的定位方法的類型(靜態、相對、絕對、固定或黏性)。
在下面給出的範例中,沒有以百分比形式指定高度,也不需要 jQuery
.mainbody{ position: absolute;//here we are setting the position of an element as absolute top: 30px; /* here we are defining Header Height to 30 px */ bottom: 10px; /*here we are defining Footer Height to 10 px */ width: 100%;// here we are setting the width to 100% }
以上是如何使用CSS和HTML使主要內容div填滿螢幕高度的詳細內容。更多資訊請關注PHP中文網其他相關文章!