-3

What's the difference between the selection of a css selector (for example: p) and a class of an element (.cat)?

 p.cat{
}

vs

p .cat{
}

Thanks!!

Ayelet W
  • 1
  • 1

1 Answers1

1
  1. p.cat selects paragraph elements with the cat class.
  2. p .cat selects all elements with the cat class that are descendants of paragraph elements.
Sean
  • 6,873
  • 4
  • 21
  • 46