DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

CSS Reference: Selectors

Quick reference for Selectors.

Read time: 1 min Words: 14
Open Playground → HTML My Progress

CSS Reference — Selectors

Quick summary of Selectors with syntax and example.

Syntax

selector { property: value; }

Example

.btn{
  background:#04AA6D; color:#fff;
  padding:10px 14px; border-radius:12px;
}