Recently, I've been working on an animation where the logo is unveiled as a div moves downward. The div itself has a transparent background.
I'm curious if it's feasible to hide parts of the logo behind the transparent div?
<div class="transparent">Some content</div>
<div class="logo"></div>
.transparent { position: relative }
.logo { position: absolute }