CSS Code Standards: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

27 October 2022

  • curprev 22:1522:15, 27 October 2022Aaron talk contribs 277 bytes +277 Created page with "== Naming Conventions == === Classes === CSS classes should all be lowercase: <pre> .bold { font-weight: bold; } </pre> If a CSS class name contains multiple words, separate each word by a hyphen: <pre> .black-background { background-color: #000000; } </pre>"