请问flex布局高度自适应问题
请问当flex-direction: column; 父容器的高度只能用px单位 貌似不能用100%; 这个怎么办
请问当flex-direction: column; 父容器的高度只能用px单位 貌似不能用100%; 这个怎么办
2016-03-28
<style>
html,body{height: 100%;margin: 0;padding: 0;}
#outer{height: 100%;background-color: #ffc;display: flex;flex-direction: column;}
或者height:400px;
.inner{height: 40%;flex: 1 1 auto;margin-bottom:20px;background-color: #ddf;}
</style>
<body>
<div id="outer">
<div class="inner"></div>
<div class="inner"></div>
</div>
</body>
能不能用百分比要看父元素高度是否存在
举报