admin管理员组

文章数量:1794759

css 高度自动填充布局

css 高度自动填充布局

效果图

 

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鸟教程(runoob)</title> <style> *{padding:0px;margin:0px;} html,body{ height: 100%; } .box { display: flex; flex-flow: column; height: 100%; } .header { background: dodgerblue; height: 50px; } .auto-fill { background: wheat; flex: 1 } </style> </head> <body> <div class="box"> <div class="header">头部</div> <div class="auto-fill">自动填充</div> </div> </body> </html>

本文标签: 布局高度css