Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Opposite of overflow: hidden? Is it possible?

So when you declare overflow: hidden on a parent div, the portions of its children that are sticking out of the parent are hidden. Is the opposite possible? Where only the parts that sticking out are actually visible and the parts that are within the parent are hidden?

like image 661
Arif Avatar asked Nov 20 '22 04:11

Arif


1 Answers

I have that problem using bulma then I fixed it with--

{
  overflow:visible;
}
like image 108
Rifat Rahman Avatar answered Nov 29 '22 05:11

Rifat Rahman