Geek Slack

Introduction to CSS
About Lesson



CSS Selectors


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.

Attribute Selector

Selects all <a> elements with a target=”_blank” attribute.

Pseudo-class Selector

Selects all <input> elements when they are in focus.

Join the conversation