Kizspy | Question: 3 (Choose 1 answer)
Consider the code:
html { font-size:16px;}
div { font-size: 3rem;border: 1px solid black;}#mycss { font-size: 2rem;border: 1px solid red;}
<p>This is a text</p><div id="mycss">At here for your code </div>
What is the right option?
A. The font-size of this document is 16px.
B. The font-size of the div with id="mycss" is 2 x the browser's font size.
C. The rem unit sets the font-size relative to the browsers base font-size, and will not inherit from its parents.
D. All of the others
FUOVER