Utilizor
Contact Us

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;
}

Example

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
}