Using the following HTML and CSS example, what will equivalent pixel value be for .em and .rem elements?csshtml { font-size: 10px;}body { font-size: 2rem;}.rem { font-size: 1.5rem;}.em { font-size: 2em;}html

🎲 Try a Random Question  |  Total Questions in Quiz: 114  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
CSS Quiz — practice the complete quiz, review flashcards, or try a random question.

CSS MCQs For LinkedIn Skill Assessments.


Using the following HTML and CSS example, what will equivalent pixel value be for .em and .rem elements?<br>css<br>html {<br> font-size: 10px;<br>}<br>body {<br> font-size: 2rem;<br>}<br>.rem {<br> font-size: 1.5rem;<br>}<br>.em {<br> font-size: 2em;<br>}<br><br>html<br><body><br> <p class='rem'></p><br> <p class='em'></p><br></body><br>