InterviewSolution
Saved Bookmarks
| 1. |
Which of the following rule allows users to import style rules from other style sheets?(a) @media(b) @important(c) @import(d) @style |
|
Answer» Correct option is (c) @import Explanation: The @import rule allows users to import style rules from other style sheets. If an @import rule refers to a valid stylesheet, user agents must treat the contents of the stylesheet as if they were written in place of the @import rule. |
|