Skip to content

Instantly share code, notes, and snippets.

@crazy4groovy
Created April 15, 2023 16:39
Show Gist options
  • Save crazy4groovy/3ace3696e946fce01cea51d905b997cc to your computer and use it in GitHub Desktop.
Save crazy4groovy/3ace3696e946fce01cea51d905b997cc to your computer and use it in GitHub Desktop.
Make angled list items/boxes/cards with skewY transform (CSS)
.item-card {
border: 1px solid #464646;
transform: skewY(-4deg);
}
.item-card > * {
transform: skewY(4deg); /* reverses the skew effect for children */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment