Overflow property of css with some modification's. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Overflow property of css with some modification's.

I was just making a code and discovered that if the overflow property of an element is set to hidden it works for if only till its border radius is 0; If its border radius is 50% or 100% it doesn't hide the rest of the overflowing scene and displays in the block .How can I make it compatible for this in such case . Plz answer if you know . Considered the code below .

25th Nov 2017, 4:03 PM
RZK 022
RZK 022 - avatar
2 Answers
+ 6
You can use clipping mask. Check here https://css-tricks.com/clipping-masking-css/
26th Nov 2017, 2:14 AM
Sajith Warnasooriya
Sajith Warnasooriya - avatar
+ 4
HTML => <div class = "BG"> <div class = "mounts"> </div> </div> CSS => .BG { height:200px; width:200px; overflow:hidden; border-radius:50% background-color:red; } .mounts { height:400px; width:200px; border-radius:50%; background-color:rgb(120,120,120); } if we take the center of the div with class mounts to a corner , we can see a visible overflow .
25th Nov 2017, 4:07 PM
RZK 022
RZK 022 - avatar