Flex Flow Shorthand

Flex Flow shorthand

  • Allows developers to specify the flex-direction and flex-wrap properties at the same time

flex-flow: <‘flex-direction’> || <‘flex-wrap’>


//specifies flow-direction: row & flex-wrap: wrap
flex-flow: row wrap