Skip to content

Instantly share code, notes, and snippets.

@NazCodeland
Last active February 4, 2023 00:34
Show Gist options
  • Save NazCodeland/2e33cb8d21df3578836da4facd26e94c to your computer and use it in GitHub Desktop.
Save NazCodeland/2e33cb8d21df3578836da4facd26e94c to your computer and use it in GitHub Desktop.
making a sharp corner effect in CSS using the ::before pseudo element
<!-- html code -->
<div></div>
/* css code */
div {
position: relative;
height: 50vh;;
background-color: #64953D;
}
div::before {
content: '';
position: absolute;
inset-block-start: 0;
inset-inline-start: 0;
border-block-start: 80px solid #6495ED;
border-inline-end: 80px solid #64953D;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment