当我使用jquery count body's height时,绝对位置元素的高度不会被包括在内?
大家好,我是一个html新手,我有一个关于css位置的问题:
首先这是我的演示html代码
<div id="test-header"></div>
<div id="test-content"></div>
<input type="button" value="body">
我设置了“test-content”position:absolute
,“test-header” " 默认情况下,
但是当我使用 $("body").height() 获取 body 的高度时,它只提醒“test-header”的高度……
那么为什么 count 不包括 abasolute 元素的高度呢?
我该如何解决这个问题?
Hello all,I'm a junior on html,I have a question about css position :
first here is my demo html code
<div id="test-header"></div>
<div id="test-content"></div>
<input type="button" value="body">
I set the "test-content" position: absolute
,the "test-header" in default
but when I use $("body").height() to get the body's height,it only alert the "test-header"'s height ……
So why count would not include the abasolute element's height?
How can I solve this problem ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是正确的结果,当您绝对定位一个元素时,它会从
document
的流程中取出,并且不会占用其父级内部的任何空间......这就是为什么< body>
不考虑它所占用的大小。This is the correct result, when you absolutely position an element it's taken out of the flow of the
document
, and doesn't occupy any space inside it's parent...which is why<body>
doesn't account for the size it takes up.