CSS Snippets
A library of useful CSS code snippets for common web design tasks.
CSS Code Snippets
Save time with our collection of ready-to-use CSS snippets. These are solutions to common web design problems.
Common Snippets
Center an Element
How to center an element horizontally and vertically.
.center {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
Responsive Image
Make an image responsive so it fits its container.
img {
max-width: 100%;
height: auto;
}
Clearfix
The modern way to clear floats.
.clearfix::after {
content: "";
clear: both;
display: table;
}