(Choose 1 answer)
Consider the code:
body { font-size:16px;}
p {
font-size: 100%;border: 1px solid black;}
<body>
<p>This is a song</p>
<div id="mycss">
Humpty Dumpty sat on the wall
</div>
</body>
What is the right option?
A. The font-size of this document is 16px.
B. The font-size of the p element is 16px
C. The % unit sets the font-size relative to the font-size of the parent element.
D. All of the others
Exit 52