About Lesson
CSS Selectors
Element Selector
Selects all <p> elements.
This is a paragraph.
This is a highlighted paragraph.
Another paragraph here.
Class Selector
Selects all elements with class=”highlight”.
This is a highlighted paragraph.
This is a highlighted div.
Another paragraph here.
ID Selector
Selects an element with id=”main”.
This is the main paragraph.
Another paragraph here.
Descendant Selector
Selects all <li> elements that are descendants of a <ul> element.
- List item 1
- List item 2
Paragraph here.
Pseudo-class Selector
Selects all <input> elements when they are in focus.
Join the conversation