怎么将div高度设置成body的100

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么将div高度设置成body的100相关的知识,希望对你有一定的参考价值。

参考技术A CSS想让一个元素的百分比高度height: 100%;起作用,需要给这个元素的所有父元素的高度设定一个有效值。如下所示就可以让div高度为100%了:

1
2
3
4
5
6
7
8
9

<html style="height: 100%;">
<body style="height: 100%;">
<div style="height: 100%;border: 1px solid #C00">
<p>
这样这个div的高度就会100%了
</p>
</div>
</body>
</html>

在使用height: 100%;时需要注意的一些事项
1、Margins 和 padding 会让你的页面出现滚动条,也许这是你不希望的。
2、如果你的元素实际高度大于你设定的百分比高度,那元素的高度会自动扩展。本回答被提问者采纳

设置div 居中 和得到dom元素高度

javascript中获取dom元素高度和宽度的方法如下:

网页可见区域宽: document.body.clientWidth
网页可见区域高: document.body.clientHeight
网页可见区域宽: document.body.offsetWidth (包括边线的宽)
网页可见区域高: document.body.offsetHeight (包括边线的高)
网页正文全文宽: document.body.scrollWidth
网页正文全文高: document.body.scrollHeight
网页被卷去的高: document.body.scrollTop
网页被卷去的左: document.body.scrollLeft

对应的dom元素的宽高有以下几个常用的:

元素的实际高度:document.getElementById("div").offsetHeight
元素的实际宽度:document.getElementById("div").offsetWidth
元素的实际距离左边界的距离:document.getElementById("div").offsetLeft
元素的实际距离上边界的距离:document.getElementById("div").offsetTop

二.实例

</head>
<body>
<div id="main">
    <div id="error">
        <div>网络连接错误</div>
    </div>
</div>
</body>
<script>
    total = document.documentElement.clientHeight;//得到窗口高度
    document.getElementById("main").style.height=total+"px";//设置main高度
    errorHeight = document.getElementById("error").offsetHeight;/*得到error高度*/
    document.getElementById("error").style.paddingTop=(total-errorHeight)/2+"px"; //设置error 居中
</script>
</html>

技术图片

 

以上是关于怎么将div高度设置成body的100的主要内容,如果未能解决你的问题,请参考以下文章

js实现网页 高度和宽度成比例的代码

怎样让一个div高度自适应浏览器高度

html、body高度

css中body下的div 为何用百分比设置height无效,用像素值可以

div标签怎么设置div的宽度

css怎么设置高度固定 宽度自适应