Get Rid of Margin Hacks With Flexbox
When working with column gutters you can get rid of nth-
, first-
, and last-child
hacks by using flexbox’s space-between
property:
.list {
display: flex;
justify-content: space-between;
}
.list .person {
flex-basis: 23%;
}
Now column gutters always appear evenly-spaced.
当前内容版权归 AllThingsSmitty 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 AllThingsSmitty .