HTML Dog
Skip to navigation

CSS Properties

Valid properties belonging to the CSS3 standard.

By Category

Text and Fonts

Colors and Backgrounds

The Box Model: margins, padding, and borders

Visual Formatting: dimensions, display, and positioning

Generated Content and Lists

Tables

Paged Media

Transitions

Transformations

Misc.

Usage

CSS properties, associated with values, form declarations. Declaration blocks, assigned with selectors, form rule sets. They are used as follows:


selector { property: value }

/* or, for with more selectors and values... */

selector1, selector2, selector3 {
    property1: value1;
    property2: value2;
    property3: value3;
}