← All tutorials

GoCareerGo Tutorials

CSS Tutorial

Selectors, box model, Flexbox, Grid, animation and responsive design.

CSS Transitions

Smoothly animates a property change over a given duration, instead of it happening instantly.

.button {
  background: teal;
  transition: background 0.2s ease-in-out;
}
.button:hover {
  background: darkslategray;
}