zoukankan      html  css  js  c++  java
  • flex引起height:100%失效

    这个应该是flex和position冲突的解决方案
    <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> <meta charset="utf-8" /> <style> * { margin: 0; padding: 0; box-sizing: border-box; } html, body { height: 100%; } .wrap { display: flex; flex-direction: column; height: 100%; } header { height: 50px; line-height: 50px; text-align: center; background-color: #ccc; border-bottom: 1px solid #999; } footer { height: 50px; line-height: 50px; text-align: center; background-color: #ccc; border-top: 1px solid #999; } .main { flex: 1; position: relative; } .panel { position: absolute; 100%; height: 100%; background-color: #ccc; } </style> </head> <body> <div class="wrap"> <header> 头部 </header> <div class="main"> <div class="panel"> <pre> 父容器position:relative; 子元素position:absolute; 100%; height:100%; </pre> </div> </div> <footer> 底部 </footer> </div> </body> </html>
  • 相关阅读:
    常见 PL.SQL 数据库操作
    PL/SQL常见设置--Kevin的专栏
    pl/sql编程
    添加List集合覆盖问题
    程序猿感情生活的那些事
    表达式树-理解与进阶
    白话神经网络
    EF Core 数据验证
    c#8内插逐字字符串增强功能
    我的新博客
  • 原文地址:https://www.cnblogs.com/zhangzs000/p/6227196.html
Copyright © 2011-2022 走看看