Skip to content

Files

Latest commit

 

History

History

340-escape-the-overflow-hidden

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

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