This one has me thrown for a loop.
Say I have a CSS container with 3 elements. The last element has content, but all 3 elements should have the same height according to the last element's size (and the width can be a hard-coded percentage or pixel value, so that's not any trouble I think).
Using display: flex
or display: grid
gets the auto-height thing working, but how do you make it so that they overlap each other? Suppose each element is 800px wide but I want them to be offset from the left 50px, 100px, and 150px.
So really, all I need is to slide them over to the left. Any idea how to do that?