Question 9 Program a CSS ruleset that will set the root font size for the HTML document to match the user's browser preference. Feedback Question 2 Program a CSS media query that is triggered if the...


Question 9<br>Program a CSS ruleset that will set the root font size for the HTML document to match the user's browser<br>preference.<br>Feedback<br>Question 2<br>Program a CSS media query that is triggered if the screen is at least 900px wide, but use em as the size unit in<br>the query.<br>Within the media query, write a rule for an element with a id equal to header. That rule should set the font<br>size to three times the current size.<br>Note: You should assume the parent element's font-size is equivalent to 16px.<br>@media screen and (min-width: 56.25em) {<br>.header {<br>font-size:300%;<br>}<br>}<br>

Extracted text: Question 9 Program a CSS ruleset that will set the root font size for the HTML document to match the user's browser preference. Feedback Question 2 Program a CSS media query that is triggered if the screen is at least 900px wide, but use em as the size unit in the query. Within the media query, write a rule for an element with a id equal to header. That rule should set the font size to three times the current size. Note: You should assume the parent element's font-size is equivalent to 16px. @media screen and (min-width: 56.25em) { .header { font-size:300%; } }

Jun 11, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here