具有固定高度的CSS柔性盒仍然伸展

时间:2017-12-18 16:35:54

标签: css css3 flexbox

我正在尝试创建一个包含两列的标题,这些列将填充到父容器的高度。我正在使用display:flex进行响应式布局。当我将标题设置为具有固定高度时,其他两个子div在它们与标题之间有间隙。

div#container {
    padding:20px;
    background:#F1F1F1;
    display: flex;
    flex-flow:row wrap;
    height:540px;
}
.header{width:100%; height:40px; background:#ccc;}
.content {
    width:150px;
    background:#ddd;
    padding:10px;
    margin-left: 10px;
}

enter image description here

Fiddle

修改

重复问题是对flex属性的一个很好的描述,但我没有看到这样的例子。 如果从标题中删除height:40px,则标题div将向下延伸到其他div。指定标题高度时,存在间隙。

1 个答案:

答案 0 :(得分:4)

import requests # No need to stringify params = { "pipeline_id": "5a36d8584b9b9e57bc9729f9", "position": "top" } # some code omitted here... response = requests.post(url, headers=zenhub_headers, data=params, verify=False) 默认值为align-content。将其更改为stretch,它应该没问题。

align-content: start;
.content-wrapper{
  display: flex;
  flex: 1;
}

div#container {
    padding: 20px;
    background: #F1F1F1;
    display: flex;
    flex-flow: column wrap;
    align-content: start;
    height: 540px;
    border: 1px solid red;
    box-sizing: border-box;
}
.header{width:100%; height:40px; background:#ccc;}
.content {
    width:150px;
    background:#ddd;
    padding:10px;
    margin-left: 10px;
}