display
This function sets the display property of a component for all media devices.
If you want to create a flex- or grid-layout prefer to use the specialized `dev.fritz2.styling.components.flexBox` and `dev.fritz2.styling.components.gridBox` factory functions in order to create a box, that has this property already set.
example calls:
display { inline } // use predefined symbols
display { block }
// Try to avoid
display { flex }Parameters
extension function parameter to bring the predefined values of DisplayValues into the scope of the functional expression
This function sets the display property of a component for each media device independently.
If you want to create a flex- or grid-layout prefer to use the specialized `dev.fritz2.components.flexBox` and `dev.fritz2.components.gridBox` factory functions in order to create a box, that has this property already set.
example calls:
display { inline } // use predefined symbols
display { block }
// Try to avoid
display { flex }Parameters
extension function parameter to bring the predefined values of DisplayValues into the scope of the functional expression for large media devices
extension function parameter to bring the predefined values of DisplayValues into the scope of the functional expression for medium sized media devices
extension function parameter to bring the predefined values of DisplayValues into the scope of the functional expression for small media devices
extension function parameter to bring the predefined values of DisplayValues into the scope of the functional expression for extra large media devices