Skip to content

Instantly share code, notes, and snippets.

@o-az
Last active April 21, 2024 05:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save o-az/d3233a12cc42c7bc83026cbff396a611 to your computer and use it in GitHub Desktop.
Save o-az/d3233a12cc42c7bc83026cbff396a611 to your computer and use it in GitHub Desktop.
A collection of useful CSS styles
blockquote::before {
content: open-quote;
}
blockquote::after {
content: close-quote;
}
.element {
z-index: calc(infinity);
}
.container {
display: grid; /* masonry; ? */
grid-template-columns: 14ch repeat(auto-fill, minmax(28ch, 1fr)) 14ch;
grid-template-rows: masonry;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment