Created
November 11, 2018 06:15
-
-
Save aliboy08/a26694b766b9ed1035d6745423a85a6d to your computer and use it in GitHub Desktop.
Curved bottom mask (css-only)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
div { | |
overflow: hidden; | |
position: relative; | |
} | |
div:before { | |
content: ""; | |
position: absolute; | |
bottom: -100px; | |
left: 50%; | |
margin-left: -640px; | |
height: 920px; | |
width: 1280px; | |
border-radius: 100%; | |
border: 100px solid #fff; | |
pointer-events: none; | |
} | |
</style> | |
<div id="test"><img src="http://placehold.it/340x170" /></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment