使用Flexbox对齐角落中的元素

时间:2015-02-13 14:51:44

标签: html css css3 flexbox

我正在尝试使用Flexbox将四个元素放在flex-container的四个角落,我正在努力。我无法弄清楚如何证明个人flex-items的内容。每当我尝试时,它最终会将flex-container的所有内容放到左侧或右侧(或顶部/底部,取决于主轴)。

HTML:

<div class="container">
    <div class="top-left">
         TL
    </div>
    <div class="top-right">
        TR
    </div>
    <div class="bottom-left">
        BL
    </div>
    <div class="bottom-right">
       BR
    </div>
</div>

这是我的CSS:

.container {
    display: -webkit-flex;
    background-color:#ccc;
}

.top-left {
 /* ? */
}

.top-right {

}

.bottom-left {

}

.bottom-right {

}

这是一个小提琴,说明我正在尝试做什么:

http://jsfiddle.net/JWNmZ/8/

1 个答案:

答案 0 :(得分:6)

这是一种方法(为清晰起见,省略了前缀):http://jsfiddle.net/JWNmZ/10/

.container {
    display: flex;
    flex-wrap: wrap;
    background-color:#ccc;
}

.top-left {
    flex: 50%; 
}

.top-right {
    flex: 50%;
    text-align: right;
}

.bottom-left {
    flex: 50%;
}

.bottom-right {
    flex: 50%;
    text-align: right;
}