If statement #2 above is passed, this paragraph should have a margin top
of 0.
The rule applied is "p {margin-top: }".
So the margin-top property applies to the "p" element.
<h3>
This h3 element should have a margin top of 2em
<em>
This emphasized text should have a margin top of UA-default, since the 
margin top property is not inherited, and "em" is a child of 'h3".
No explicit rule is applied for "em".
</em>
THe rule applied is 'h3 {margin-top: 2em}".
So the margin top property applies to em and h3.
</h3>
<h4>
THis h4 element should have a margin top which is 4em.
The rule applied is "margin-top: 4em".
So the margin top property applies to h4.
</h4>

<strong>
This strong text should have a margin top of 6em
; so the margin top property applies
to the strong element.
The rule applied is "strong {margin-top: 6em}".
(NOTE: Should other HTML elements be mentioned?)
</strong>
<blockquote>
This blockquote element should have a margin top of 50% of that
of its parent (body element).
The rule applied is "blockquote {margin-top: 50%}", which should be
UA-default.
</blockquote>
All other properties of this page should be UA-default.



