Coding & Web DevelopmentBeginner3 sectionsUpdated May 26, 2026

CSS Essentials

Style your pages: colours, layout, spacing, and flexbox.

Try it in the compiler

Common properties

TermMeaning
colorText colour
backgroundBackground colour or image
marginSpace outside an element
paddingSpace inside an element
font-sizeSize of the text
border-radiusRounded corners

Flexbox layout

The simplest way to arrange items in a row or column.

css
.row {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}

Responsive design

Make styles change on smaller screens.

css
@media (max-width: 600px) {
  .row {
    flex-direction: column;
  }
}
Tagscssweb

Practise the reference.

Open the compiler, paste one snippet, and change it until you understand what it does.

Open the compiler
Resources, free guides, blog, cheatsheets & tools · Teki-SL