// 4-Colum table (Asciidoc) // —————————————————————————– //

.title_text

cols=“2,3,2,5a”, subs=+macros, options=“header”, role=“rtable mt-3 mb-5”

|=============================================================================== |Property | Value |Default |Description

|`flex-flow` |`flex-direction` `flex-wrap` |`row nowrap` |The `flex-flow` property is a shorthand propery for setting both the `flex-direction` and `flex-wrap` properties.

.Example

source, css

.flex-container {

display: flex;
flex-flow: row wrap;

}


|===============================================================================