I want a few divs to be positioned in a line next to each other, but also allow them to overlap the previous div.
What I\'m trying to get is a timeline with divs for
Give the .day class a width, height, and position it relatively, keeping the inner divs absolutely positioned.
.day
width
height
position
relative
div
absolute
Check out the below CSS:
.day {position: relative; width: 500px; height: 500px;}
And the HTML: