Globale linker

Book 1

Book 2

Book 2 Ch. 1 Cascading Style Sheets

Cascading Style Sheets refer to the use of multiple style definitions in a single document. A style sheet file can link to every document in a web site, thus controlling the overall look and feel of the site.However, within any of the linked documents, a style header can override the linked style sheet. Within the same file, an inline style definition can override the style embedded in the header block, along with any style information from the linked style. The term «cascading» refers to inheritance, or the hierarchical relationship between linked, imported, embedded and inline styles.

See the CSS-tutorial for changeable style elements

The syntax for style definitions:

selector {property: value; property: value......}
h1 {color: #FFFF00; font-size: 120%;}

A style guide is a standards document or manual that establishes a set of conventions or rules for performing common tasks.

Changes from CSS1 to CCS2 include:

Chapter 22/23 Book 1 Chapter 2