-3

What is the difference between these CSS selectors? I can't understand what makes that spaces between paragraph and '.'?

  • p .a

  • p.a

  • p .a i

BoltClock
  • 700,868
  • 160
  • 1,392
  • 1,356

1 Answers1

2

Considering p:

  • p .a - all elements with the class a inside paragraphs. (The fancy term for the space there is descendant combinator.)
  • p.a - all paragraphs that have the class a.
  • p .a i - all i(italic) elements inside elements with a class that are inside paragraphs.
T.J. Crowder
  • 1,031,962
  • 187
  • 1,923
  • 1,875
Maxwell s.c
  • 1,583
  • 15
  • 29