Home > Blockchain >  Basic CSS issue with image mask
Basic CSS issue with image mask

Time:04-15

I'm doing a figma to html right now. Link : https://www.figma.com/file/X6ailPBDc7C7C2uMohXYuo/Untitled?node-id=0:1 The issue is I can't design the 2nd section which is the app screenshot inside a babypink circle. This is my code : https://github.com/Farhatmahi/Weight-Loss-Page Can anyone tell me how to fix this?

CodePudding user response:

Just add overflow: hidden; to your #section-2 .circle style.

CodePudding user response:

Add below property to your circle class. This should do the work for you.

.circle {
   overflow: hidden;
}

CodePudding user response:

use box-shadow like this it is almost working.

#section-2 .circle img{
   box-shadow:0px 0px 0px 0px  white ;

}
  • Related