The HTML can be as simple as this without sacrificing on accessibility
<time datetime="08-04-2020">
<span>Aug</span>
<span>4</span>
</time>
The first box-shadow gets us the illusion of a stack of paper
span:last-of-type {
box-shadow: 0 10px #bbb;
}
The other three box-shadows stack within a single declaration
time {
box-shadow: 0 15px 15px 0 black,
0 20px 0 5px gray,
0 22px 0 5px black;
}
Top comments (0)