flex-wrap # 08
0
Tags
css-flexbox
By default, flex items will all try to fit onto one line. We can change it with flex-wrap to the next line.
Syntax
.container {
flex-wrap: nowrap | wrap | wrap-reverse
}
flex-wrap: wrap
flex-wrap: wrap-reverse
Post a Comment