div height 自适应高度 占满剩余高度的方法
Posted 鸡毛巾
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了div height 自适应高度 占满剩余高度的方法相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> html, body { margin: 0; padding: 0; height: 100%; } .if-top { display: block; border: none; width: 100%; height: 120px; } .if-menu { width: 20%; height: 100%; border: none; } .if-content { width: 78%; height: 100%; border: none; } .div-outer { height: 100%; box-sizing: border-box; padding-top: 100px; } .div-top { background-color: burlywood; height: 100px; margin-top: -100px; } .div-content { background-color: #8ddad3; height: 100%; } </style> </head> <body> <div class="div-outer"> <div class="div-top"> 你好 </div> <div class="div-content"> 世界 </div> </div> <!--<iframe class="if-top" src="top.html"></iframe>--> <!--<iframe class="if-menu" src="menu.html"></iframe>--> <!--<iframe class="if-content" src="content.html"></iframe>--> </body> </html>
这个方法挺好的
以上是关于div height 自适应高度 占满剩余高度的方法的主要内容,如果未能解决你的问题,请参考以下文章