DRAG DROP
You are creating an application by using HTML5 and CSS3. The styles for the pages are
derived from five style sheets.
The styles are not being applied correctly to the pages in the application.
You need to determine the order in which the style sheets will be applied by the browser.
In which order will the five style sheets be applied? (To answer, move the style sheet types
from the list of style sheet types to the answer area and arrange them in the order that they
will be applied.)
Answer: See the explanation
Explanation:
Box 1: user agent style sheets
Box 2: user normal style sheets
Box 3 author normal style sheets:
Box 4: author important style sheets
Box 5: user important style sheetsNote:
The order of declarations from least important to most important:
1. user agent declarations
2. user normal declarations
3. author normal declarations
4. author important declarations
5. user important declarations
the correct order from most to least important is:
USER IMP
AUTH IMP
AUTH NORM
USER NORM
USER AGENT
But they will be applied from the least important to the most important, so the answer is correct.