更新 2018 / 09 / 13

flex(2つ並び)

css、flexを使って2つ並びのボックスを作ります。

css

                        
.flex_box {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}
.flex_col2 {
    width: 49%;
    margin-right: 2%;
}
.flex_col2:nth-of-type(2) {
    margin-right: 0;
}