#340 Escape the overflow hidden

medium
css

You have a parent container box that has a condition of overflow: hidden and there is a rocket emoji in it.

<div class="parent">
  <div class="rocket">🚀</div>
</div>

Your task is to show a rocket emoji in top right corner. -25px from top and 25px from right. It will look like this:

CleanShot 2024-11-11 at 09 31 03

The only condition is that you can't remove oveflow: hidden on parent.