美文网首页
height:100%不起作用

height:100%不起作用

作者: ChasLee | 来源:发表于2015-12-22 11:17 被阅读0次

设置一个div 高度100%并没什么用...因为百分比是要获取父元素的长宽再进行换算..
所以是获取不到父元素的高度导致,解决方法是把所有父元素高度都设置为100%
<html style="height:100%"> <body style="height:100%"> <div style="height:100%"> <p>这样高度就会100%</p> </div> </body> </html>

相关文章

网友评论

      本文标题:height:100%不起作用

      本文链接:https://www.haomeiwen.com/subject/viomhttx.html