Table of Contents

Css - Declaration Block (in style sheet)

About

A declaration block starts with a left curly brace ({) and ends with the matching right curly brace (}).

In between, there must be a list of zero or more semicolon-separated (;) declarations.

A declaration block may contain an other declaration block.

Grammar

In between the curly braces, there may be any tokens, except that :

Example

#dw__toc {
    /* Apply to the div childs of the dw_toc id */
    > div {
        font-size: 0.875em;
        padding: .5em 1em 1em;
    }