Interface FlexLayoutTagDeclaration
- All Superinterfaces:
- HasBinding,- HasId,- HasIdBindingAndRendered,- IsRendered,- IsVisual
Renders a <a href=https://www.w3.org/TR/css-flexbox-1/>Flexible Box Layout</a>.
- Since:
- 3.0.0
- 
Method SummaryModifier and TypeMethodDescriptionvoidsetAlignItems(String alignItems) This value defines CSS align-items value of the flex layout.voidsetColumns(String columns) This value defines the layout constraints for column layout.voidsetJustifyContent(String justifyContent) This value defines CSS justify-content value of the flex layout.voidThis value defines the layout constraints for row layout.Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasBindingsetBindingMethods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.IsRenderedsetRenderedMethods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.IsVisualsetCustomClass, setMarkup
- 
Method Details- 
setColumnsThis value defines the layout constraints for column layout. It is a space separated list of layout tokens '<n>fr', '<measure>' or the keyword 'auto'. Where <n> is a positive integer and <measure> is a valid CSS length. Example: '2fr 1fr 100px 3rem auto'.
- 
setRowsThis value defines the layout constraints for row layout. It is a space separated list of layout tokens '<n>fr', '<measure>' or the keyword 'auto'. Where <n> is a positive integer and <measure> is a valid CSS length. Example: '2fr 1fr 100px 3rem auto'.
- 
setAlignItemsThis value defines CSS align-items value of the flex layout.- Since:
- 3.0.0
 
- 
setJustifyContentThis value defines CSS justify-content value of the flex layout.- Since:
- 3.0.0
 
 
-