CSS
[CSS] CSS / Selector / Type Selector
OOQ
2022. 7. 29. 13:39
728x90
SMALL
#CSS
#type selector
Type Selector
Type selectors are selectors that select HTML elements such as h1, p, div, and span.
For example, the following makes the contents of all p elements in an HTML document blue.
p {
color: blue;
}
728x90
LIST