← All tutorials

GoCareerGo Tutorials

CSS Tutorial

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

What is CSS?

CSS (Cascading Style Sheets) controls how HTML elements are displayed — colors, fonts, spacing and layout.

h1 {
  color: teal;
  font-size: 2rem;
  margin-bottom: 1rem;
}
  • 'Cascading' — multiple rules can apply to the same element; specificity + order decide which wins
  • Separates presentation from HTML structure
  • Can be inline, internal (<style>) or external (linked .css file)