CSS Introduction | Getting Started with CSS | CSS Syntax
CSS Syntax
English

Korean

CSS syntax consists of a selector and a declaration block.
The selector points to the HTML element to which you want to apply CSS.
The declaration block can contain one or more declarations separated by semicolons (;), and the whole block is enclosed in braces ({ }).
Each declaration has a CSS property name and a property value, connected by a colon (:).
A CSS declaration always ends with a semicolon (;).