The media
component represents a highly-flexible
container, that allows authors to add an object (generally
an image) to the left or right of other content. The container has no
set width or height.
Used where there is a need to place an object to the left or right of other content.
N/A
Used to place an object to the left of other content.
<div class="media">
<a href="#" class="media__feature">
<img src="100x100.png" alt="">
</a>
<div class="media__body">
Lorem ipsum dolor...
</div>
</div>
Used to place an object to the right of other content.
<div class="media media--rev">
<a href="#" class="media__feature">
<img src="100x100.png" alt="">
</a>
<div class="media__body">
Lorem ipsum dolor...
</div>
</div>