Layout
lightning:layout
Represents a responsive grid system for arranging containers on a page.
For Aura components only. For LWC development, use lightning-layout.
For Use In
Lightning Experience, Experience Builder Sites, Salesforce Mobile App, Lightning Out (Beta), Standalone Lightning App, Mobile Offline
A lightning:layout is a flexible grid system for arranging containers within a page or inside another container. The default layout is mobile-first and can be easily configured to work on different devices.
Create the content of the layout by including lightning:layoutItem components within lightning:layout.
This component implements styling from the grid utility classes in the Lightning Design System.
Customize the layout by setting the following attribute values.
Spread layout items out horizontally based on the following values.
center: Appends theslds-grid_align-centerclass to the grid. This attribute orders the layout items into a horizontal line without any spacing, and places the group into the center of the container.space: Appends theslds-grid_align-spaceclass to the grid. The layout items are spaced horizontally across the container, starting and ending with a space.spread: Appends theslds-grid_align-spreadclass to the grid. The layout items are spaced horizontally across the container, starting and ending with a layout item.end: Appends theslds-grid_align-endclass to the grid. The layout items are grouped together and aligned horizontally on the right side of the container.
Spread layout items out vertically based on the following values.
start: Appends theslds-grid_vertical-align-startclass to the grid. The layout items are aligned at the top of the container.center: Appends theslds-grid_vertical-align-centerclass to the grid. The layout items are aligned in the center of the container.end: Appends theslds-grid_vertical-align-endclass to the grid. The layout items are aligned at the bottom of the container.stretch: Appends theslds-grid_vertical-stretchclass to the grid. The layout items extend vertically to fill the container.
Pull layout items to the layout boundaries based on the following values. If padding is used on layout items, this attribute pulls the elements on either side of the container to the boundary. Choose the size that corresponds to the padding on your layout items. For instance, if lightning:layoutItem padding="horizontalSmall", choose pullToBoundary="small".
small: Appends theslds-grid_pull-paddedclass to the grid.medium: Appends theslds-grid_pull-padded-mediumclass to the grid.large: Appends theslds-grid_pull-padded-largeclass to the grid.
Use the class or multipleRows attributes to customize the styling in other ways.
lightning:layout enables you to create several types of columns.
- Flexible widths that adjust based on their content
- Fixed widths that take up a percentage of the container
Create a simple layout by enclosing single or multiple lightning:layoutItem components within lightning:layout. lightning:layoutItem creates a column within lightning:layout.
To create columns with widths that are based on their content, use flexibility="auto". The horizontalAlign attribute determines how to spread the layout items horizontally. For example, space evenly distributes columns horizontally with an equal amount of space separating the columns.
Here is an example that creates columns with flexible widths. The horizontal alignment is set to space, which evenly distributes columns horizontally with an equal amount of space separating the columns.
To create columns with fixed widths, use the size attribute on lightning:layoutItem. For example, to create two columns where the width of the first column is 33% of the grid container and the second column is 66% of the grid container, use size="4" and size="8".
For more information, see the SLDS grid utility classes.