Recipe: Media objects
The Media Object is a pattern we see all over the web. It refers to a two-column box with an image on one side and descriptive text on the other, e.g. a social media post.
Requirements
Media Object pattern needs some or all of the following characteristics:
- Stacked on Mobile, two columns on Desktop.
- The image can be on the left or right.
- The image might be small or large.
- Media Objects can be nested.
- The Media Object should clear the contents no matter which side is tallest.
The recipe
Choices made
I have chosen to use grid layout for the media object as it allows me to control the layout in two dimensions when I need to. This means that when we have a footer, with short content above, the footer can be pushed down to the bottom of the media object.
Another reason to use grid layout is in order that I can use fit-content
for the track sizing of the image. By using fit-content
with a maximum size of 200 pixels, when we have a small image such as the icon, the track only gets as large as the size of that image — the max-content
size. If the image is larger, the track stops growing at 200 pixels and as the image has a max-width
of 100% applied, it scales down so that it continues to fit inside the column.
By using grid-template-areas
to achieve the layout, I can see the pattern in the CSS. I define my grid once we have a max-width of 500 pixels, so on smaller devices the media object stacks.
An option for the pattern is to flip it to switch the image to the other side — this is done by adding the media-flip
class, which defines a flipped grid template causing the layout to be mirrored.
When we nest one media object inside another we need to place it into the second track in the regular layout, and the first track when flipped.
See also
fit-content
property- Using grid template areas
- CSS grid layout module