Cascading Style Sheets (CSS)

Overview

Example CSS Code

body {
  background-color: black;
}

h1 {
  color: white;
  text-align: center;
}

p {
  font-family: helvetica;
  font-size: 10px;
}

Syntax

Animations

Usage with JavaScript

Beyond Web Pages

CSS Frameworks

To simplify and speed up CSS development, many frameworks are used:

These frameworks:


Exercise

What is the CSS "property: value" used to make an HTML element's text aligned to the left?

flag: text-align: left;