Interface FlexLayoutTagDeclaration

All Superinterfaces:
HasBinding, HasId, HasIdBindingAndRendered, IsRendered, IsVisual

public interface FlexLayoutTagDeclaration extends HasIdBindingAndRendered, IsVisual
Renders a <a href=https://www.w3.org/TR/css-flexbox-1/>Flexible Box Layout</a>.
Since:
3.0.0
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    setAlignItems(String alignItems)
    This value defines CSS align-items value of the flex layout.
    void
    setColumns(String columns)
    This value defines the layout constraints for column layout.
    void
    setJustifyContent(String justifyContent)
    This value defines CSS justify-content value of the flex layout.
    void
    This value defines the layout constraints for row layout.

    Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasBinding

    setBinding

    Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasId

    setId

    Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.IsRendered

    setRendered

    Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.IsVisual

    setCustomClass, setMarkup
  • Method Details

    • setColumns

      void setColumns(String columns)
      This value defines the layout constraints for column layout. It is a semicolon separated list of layout tokens '<n>*', '<measure>' or the keyword 'auto'. Where <n> is a positive integer or empty and <measure> is a valid CSS length. Example: '2*;*;100px;3rem;auto'.
    • setRows

      void setRows(String rows)
      This value defines the layout constraints for row layout. It is a semicolon separated list of layout tokens '<n>*', '<measure>' or the keyword 'auto'. Where <n> is a positive integer or empty and <measure> is a valid CSS length. Example: '2*;*;100px;3rem;auto'.
    • setAlignItems

      void setAlignItems(String alignItems)
      This value defines CSS align-items value of the flex layout.
      Since:
      3.0.0
    • setJustifyContent

      void setJustifyContent(String justifyContent)
      This value defines CSS justify-content value of the flex layout.
      Since:
      3.0.0