← All tutorials

GoCareerGo Tutorials

CSS Tutorial

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

CSS Gradients

Generate smooth color transitions directly in CSS — no image file needed.

.hero {
  background: linear-gradient(135deg, #2dd4bf, #0f9f8f);
}
.spotlight {
  background: radial-gradient(circle, white, transparent);
}