Css Advanced Selectors Cheat Sheet



Introduction: : CSS Selectors help to select HTML elements (ex: DIV, P, H1) to apply styles. Here different CSS selectors are explained with examples and DOM tree.

Selects all child elements under the parent element. Here style is applied to every element under the parent element. Its weight is more and to be used with care.

There are so many CSS selectors with unfamiliar symbols,.,. + etc, so I was often confused about how CSS selectors work. Eventually, I straightened them out in my head and re-designed. Selector Types 23 Outline 25 WebsiteSetup.org - Beginner’s CSS Cheat Sheet 1. 3D / 2D Transform 25 Generated Content 26 Line Box 28 Hyperlink 31 Positioning 31 Ruby 32. Beginner’s CSS Cheat Sheet 20. Pseudo-Element::first-letter Adds special style to the first letter of a text::first-line. View CSSCheatSheet.pdf from CS 101 at California State University, Northridge. CSS Cheat Sheet Selectors Selector Example Description. Selects all elements element div Selects all div. CSS Cheat Sheet contains the most common style snippets: CSS gradient, background, button, font-family, border, radius, box and text shadow generators, color picker and more. All these and other useful web designer tools can be found on a single page. Test the generated syle sheets clicking the blue arrows pointing down.

Above example sets text color red and background color green to all elements inside the body(parent) element.

2. Class Selector

Selects specified CSS class applied elements on the page. CSS class selector name starts with “.” followed by name.

Advanced

Above example,

  • Sets text color green to CSS class “.heading” applied H1 element.
  • Sets text color red to CSS class “.firstItem” applied two P elements.

3. ID Selector

Selects element which has a specified ID name. CSS ID selector name starts with “#” followed by name.

Advanced

Note: ID name to be unique in a web page.

Above example,

  • Sets text color green to element with ID “headerElement”.
  • Sets text color red to element with ID “firstElement”.

4. Element Selector

Selects elements based on element type.

Above example sets font weight bold to all P elements on the page.

5. Descendant Selector

Selects all specified descendant child elements under the parent element.

Above example sets font background color green to all decedent P child elements under the DIV parent element (<div>).

6. Child Selector

Selects all specified immediate child elements under the parent element.

Above example sets font background color green to immediate P child elements under the DIV parent element (<div>).

Css selectors selenium cheat sheet

7. Adjacent Sibling Selector

Selects specified elements which are immediate to an adjacent element.

Above example sets text color light green to P element which is next to DIV element with ID “divb” (<div>).

8. General Sibling Selector

Selects all specified elements which are siblings to an adjacent element.

Above example sets text color light green to all sibling P elements to DIV element with ID “divb” (<div>).

Note: 1) Using Document Object Model (DOM) tree, CSS selectors are explained. 2) Selected elements are marked (node border color is changed) and styled in the DOM tree. 3) Use CSS Attribute Selectors link to get details about different CSS attribute selectors.

CSS Selectors cheat sheet


Different CSS selectors combinations cheat sheet

Css Style Cheat Sheet


Css Advanced Selectors Cheat Sheet Pdf

Following table gives CSS code and list of CSS selectors used in the code.

CSSSelectors used
  • ID Selector (#d1)
  • Element Selector (div, p)
  • Child Selector (#d1 > div, div > p)
  • ID Selector (#d1)
  • Element Selector (div, p)
  • Descendant Selector (#d1 div, div p)
  • ID Selector (#d1)
  • Element Selector (div, p)
  • Child Selector (#d1 > div, div > div)
  • Descendant Selector (div p)
  • Element Selector (p,div)
  • Adjacent Sibling Selector (p + div)
  • Child Selector(div > p)
  • Element Selector (p, div)
  • Adjacent Sibling Selector (p + div)
  • Descendant Selector (div p)
  • ID Selector (#d11)
  • Class Selector (.childcntl)
  • ID Selector (#d1, #d11)
  • Child Selector (#d1 > p, #d11 > p)
  • ID Selector (#d11)
  • Class Selector (.childcntl)
  • Adjacent Sibling Selector (#d11 + .childcntl)

Css Code Cheat Sheet

Related selectors are explained using following links.