Implementation: CSS test questions

1

What does CSS stand for?

2

Identify the selector shown in the following CSS example:

h1 { color: blue; font-size: 12px;}

3

Identify one property shown in the following CSS example:

h1 { color: blue; font-size: 12px;}

4

Which type of style sheet can be created once and then linked to a number of webpages?

5

Which of the following is exemplified in the HTML and CSS shown below?

˂head˃˂style˃body { background-color: light-cyan;}h1 { color: purple; margin-left: 40px;}˂/style˃˂/head˃

6

Which of the following symbols is used to let browser software know that a rule should apply to all elements with a specific ID?

7

Use of the . selector lets the browser know that the rules that follow are part of which of the following?

8

Which of the following is a value that can be applied using the font-family property?

9

Which of the following is a value that can be applied using the font-size property?

10

Which property should replace the question mark shown in the rule below?

H3 { font-size:16px; font-family: “Times New Roman”; ________?________ : justify; }