SyntaxStudy
Sign Up
CSS CSS Colors & Backgrounds
CSS Beginner 1 min read

CSS Colors & Backgrounds

CSS Colors & Backgrounds

Text Color

Set text colour with the color property.

Background

PropertyDescription
background-colorSolid background colour
background-imageImage as background
background-sizecover, contain, pixels
background-positionPosition: center, top, etc.
background-repeatno-repeat, repeat-x

Gradients

CSS gradients create smooth transitions between colours: linear-gradient() and radial-gradient().

Example
body {
  background-color: #f8fafc;
}

.card {
  background-color: white;
  color: #111827;
}

.hero {
  background-image: url("hero.jpg");
  background-size: cover;
  background-position: center;
}

.gradient {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
}