Skip to content

Instantly share code, notes, and snippets.

@aliboy08
Created November 11, 2018 06:15
Show Gist options
  • Save aliboy08/a26694b766b9ed1035d6745423a85a6d to your computer and use it in GitHub Desktop.
Save aliboy08/a26694b766b9ed1035d6745423a85a6d to your computer and use it in GitHub Desktop.
Curved bottom mask (css-only)
<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