Quote:
Originally Posted by bfollowell
OK, I know p is paragraph. So all paragraphs with no other class assigned would default to the global p definition.
|
All paragraphs, with or without class, will have the global p style applied. Paragraphs with a class or matching some other selector can have additional styles applied (possibly overriding default ones).
p + p applies to any paragraph following a paragraph, but still the basic p applies too, so they are justified and Times New Roman as well.
p + p b applies to any <b> tag inside a <p> following another <p> and, since what this style constains is text-align, text-indent and margin-top, it's pretty useless, because the <b> tag is inline, and those properties have no meaning there.