Home > Article > Web Front-end > what are css style rules
CSS style rules define the visual style of HTML elements, including selectors (determining applicable elements) and declaration blocks (defining style attributes and values). Selectors include element selectors (specify element names), class selectors (specify class names), ID selectors (specify IDs) and descendant selectors (select child elements). The declaration block contains style attributes and their values that are used to change the appearance of the element, such as text color, font size, and background color.
CSS Style Rules
CSS style rules are used to define the visual style of HTML elements. Each rule contains two main parts:
Selectors
Selectors can specify the target element in a variety of ways:
p
or div
. .my-class
. #my-id
. div p
. Declaration Block
The declaration block contains a set of style properties, each followed by a colon and a value:
color
, font-size
, or background-color
. red
, 12px
, or #ffffff
. Example CSS Style Rules
<code class="css">p { color: blue; font-size: 16px; } .my-class { background-color: yellow; padding: 10px; }</code>
The first rule applies to all paragraph (p
) elements, changing their text color Set to blue and font size to 16 pixels. The second rule applies to all elements with the my-class
CSS class, setting their background color to yellow and adding 10 pixels of padding.
The above is the detailed content of what are css style rules. For more information, please follow other related articles on the PHP Chinese website!