CSS Quiz


Toolkit > Site Content > Quiz

1. What does CSS stand for?
Cool Styling Standard
Capable Styling Sheets
Cascading Style Sheets
Creative Style Sheets


2. Which of the following styles is recommended?
In-Line styles
External styles
Embedded styles
Multiple styles


3. In what form are style rules presented?
selector { property: value }
selector { property= value }
selector ( property: value )
selector ( property= value )


4. Which property applies a color to text?
text-color
foreground-color
background-color
color


5. Which values for font-family property is valid?
Times New Roman, serif
"Times New Roman", serif
Times New Roman; serif;
"Times New Roman"; "serif";


Intermediate Questions

6. What does the ID selector do?
Apply the style to a specific element
Apply the style to all the elements
Apply the style to a group of elements
Apply the style to elements of the same type


7. What selector should you use when applying a style to multiple elements?
ID
Class
Type
Any of the above


8. How to apply a style to several specific element types?
Use the type selector with , delimiter
Use the type selector with . delimiter
Use the ID selector with ; delimiter
Use the ID selector with > delimiter

Top