Skip to content

Files

Latest commit

 

History

History
17 lines (11 loc) · 1.79 KB

File metadata and controls

17 lines (11 loc) · 1.79 KB

Escape the overflow hidden medium #css

by Pawan Kumar @jsartisan

Take the Challenge

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.


Back Share your Solutions Check out Solutions