Inspect Element As A Way To Feed Your Curiosity
One of the best gifts we have as front-end developers is inspect element.
Container queries
This feature is well established and works across many devices and browser versions. It’s been available across browsers since February 2023
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;
}
}One of the best gifts we have as front-end developers is inspect element.