Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Struggling with these questions and hope to get some clarity on what I`m doing wrong. Question 2 Program a CSS media query that is triggered

image text in transcribedimage text in transcribedimage text in transcribedimage text in transcribedStruggling with these questions and hope to get some clarity on what I`m doing wrong.

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%; } } Question 5 Program a CSS media query that is triggered on all media types if the media is at least 400px wide, but use em as the size unit in the query. Note: The media query does not need any rules inside it's brackets. You should assume the parent element's font-size is equivalent to 14px. @media (min-width:28.571em) {} Feedback Question 6 Program a CSS media query that is triggered if the screen is at least 400px wide, but use em as the size unit in the query. Note: The media query does not need any rules inside it's brackets. You should assume the parent element's font-size is equivalent to 24px. @media screen and (min-width: 16.667em) {} Feedback 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

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Advanced Oracle Solaris 11 System Administration

Authors: Bill Calkins

1st Edition

0133007170, 9780133007176

More Books

Students also viewed these Databases questions

Question

What are the main objectives of Inventory ?

Answered: 1 week ago

Question

Explain the various inventory management techniques in detail.

Answered: 1 week ago