CSS 1
CSS 2
CSS 3
CSS 4
CSS 5
100

If you have more than one property for a CSS selector, what character separates them?

; (semicolon)

100

What does CSS stand for?

Cascading Style Sheet
100

What is wrong with this code?

body {color=black;}

Should have : instead of =

100

What is the value in this CSS code?

p {color: red;}

red

100

How are rule sets closed?

; semicolon

200

Where in the Html document is the correct location to insert code to link to your external CSS?

In the <head> section

200

What symbol goes around each CSS selector?

{ }

200

What is the property in this CSS code?

p {font-size: 10px;}

font-size

200

Where can you find your style sheet?

Left side of screen; style.css

200

What is the selector in this code?

img {width: 100px;}

img

300

What is the correct way to format a font family for a paragraph?

p {font-family: Cursive;}

300

What is the selector for a link (hyperlink)?


a { }

300

This code is correct (True or False):

body {background-color="red"'}

False
300

How are numbers measured in CSS code?

pixels, px

300

Give 2 examples of a border-style.

dotted, double, solid, dashed

400

This CSS code is correct (True or False).

a {color: blue;}

True

400

Using CSS, how would you center text?

{text-align: center;}

400

This code is correct (True or False):

link {color: blue;}

False

400

What is the purpose of the float property?

Aligns an image (right, left, none)

400

Give 3 examples of a font-family.

cursive, monospace, fantasy, serif, sans-serif

500

How do you remove the underline from a hyperlink using CSS?

a {text-decoration: none;}

500

What is the code for a comment in CSS?

/*comment*/

500

How do you link your CSS to your HTML page?

<link rel="stylesheet" href="style.css">

500

What does RGB stand for?

Red, Green, Blue

500

How many colors can be made using RGB?

Over 16 million

M
e
n
u