Css miscellaneous
- CSS3 ___________ let you display smooth transitions between two or more specified colors
-
View Hint View Answer Discuss in Forum
NA
Correct Option: D
Earlier, you had to use images for these effects. However, by using CSS3 gradients you can reduce download time and bandwidth usage. In addition, elements with gradients look better when zoomed, because the gradient is generated by the browser.
- As a general rule, properties in CSS inherit from ___________ elements
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
parent to child
- How a style sheet can be glued to the HTML document?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: D
All of above
- The ______________ is the link between the HTML document and the style. It specifies what elements are affected by the declaration.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
The selector is the link between the HTML document and the style. It specifies what elements are affected by the declaration. The declaration is that part of the rule that sets forth what the effect will be.
- Which of the following option a declaration consist of?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: D
A declaration has two parts separated by a colon:
Property – that part before the colon
Value – that part after the colon.