This content originally appeared on web.dev and was authored by Rachel Andrew
Alignment using the first
and last
keywords is now available in all major engines. This means that we can use last baseline alignment as another option when aligning groups of flex or grid items.
First baseline alignment #
If you set the value of align-items
to baseline
, the result will be first baseline alignment. Therefore the first baseline of the item you are aligning (described as the alignment subject) will align with the first baseline of the other items in the group. You can see this in the following example, where the first two flex items are aligned using align-items: baseline
, so they align along the baseline created by the larger text. The final item is aligned to flex-start
and therefore aligns to the start of the flex container.
Last baseline alignment #
When aligning a grid or flex item with the value last baseline
, the last baseline of that item will align to the last baseline of the baseline sharing group that it is part of. The following example demonstrates last baseline alignment, with the first flex item aligning with the last line of text in the larger item. The final item in this group is aligned to flex-end
, which is the end of the flex container.
Fallback alignment #
If the alignment subject does not have a baseline sharing group to align to, then a fallback alignment will be used. For baseline
, and first baseline
the fallback alignment is start
, and for last baseline
the fallback alignment is end
.
Photo by Toa Heftiba.
This content originally appeared on web.dev and was authored by Rachel Andrew
Rachel Andrew | Sciencx (2023-02-20T00:00:00+00:00) Last baseline alignment. Retrieved from https://www.scien.cx/2023/02/20/last-baseline-alignment/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.