--- id: Gallery section: layouts cssPrefix: pf-v5-l-gallery ---import './Gallery.css' ## Examples ### Basic ```html ``` ### With gutter ```html ``` ### Grid template minmax() width customization Grid template columms min value can be applied to .pf-v5-l-gallery. Min-width is set inline as `--pf-v5-l-gallery--GridTemplateColumns--min{-on-[breakpoint]}: {width}`. ### Min width modified gallery ```html ``` ### Max width modified gallery ```html ``` ### Min width modified gallery, responsive updates ```html ``` ### Max width modified gallery, responsive updates ```html ``` ### Min and max width modified gallery, responsive updates ```html ``` ### List type ```html ``` ## Documentation ### Overview The gallery layout is designed so that all of its children are of uniform size, display horizontally, and wrap responsively. ### Usage | Class | Applied to | Outcome | | -- | -- | -- | | `.pf-v5-l-gallery` | `
` | Initializes a Gallery layout | | `.pf-v5-l-gallery__item` | `
` | Explicitly sets the child for the gallery. This class isn't necessary, but it is included to keep inline with BEM convention, and to provide an entity that will later be used for applying modifiers. | | `.pf-m-gutter` | `.pf-v5-l-gallery` | Adds space between children by using the globally defined gutter value. | | `--pf-v5-l-gallery--GridTemplateColumns--min{-on-[breakpoint]}: {width}` | `.pf-v5-l-gallery` | Modifies the min value of `grid-template-columns` declaration at the optional [breakpoint](/developer-resources/global-css-variables#breakpoint-variables-and-class-suffixes). | | `--pf-v5-l-gallery--GridTemplateColumns--max{-on-[breakpoint]}: {width}` | `.pf-v5-l-gallery` | Modifies the max value of `grid-template-columns` declaration at the optional [breakpoint](/developer-resources/global-css-variables#breakpoint-variables-and-class-suffixes). |