Article

A card layout that progressively shifts from stacked to horizontal and finally to an overlaid composition based on the available container width.

.test-wrapper {
  container-type: inline-size;
}
 
@container (min-width: 800px) {
  .card__thumb {
    position: absolute;
    inset: 0;
  }
}

Inspect Element As A Way To Feed Your Curiosity

One of the best gifts we have as front-end developers is inspect element.

Full Screen