Bloc de déclarations (declaration block)¶
- Bloc de déclarations
- Un bloc de déclarations commence par une accolade ouvrante
{
et se termine par une accolade fermante}
. Au milieu doit se trouver une liste de zéro ou davantage de déclarations séparées par des points-virgule (;). [1]
exemple¶
{
font-family: helvetica;
font-size: 1.2em;
}
[1] | “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.” – “Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification – Syntax and Basic Data Types.” Edited by Bert Bos et al., Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification – Syntax and Basic Data Types, W3C, 12 Apr. 2016. |