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
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
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.