CSS Practice Quiz

CSS Practice Quiz

9th - 12th Grade

20 Qs

quiz-placeholder

Similar activities

Compuscholar Chapter 6 Exam Review

Compuscholar Chapter 6 Exam Review

9th - 12th Grade

20 Qs

CSS Selectors

CSS Selectors

10th Grade

19 Qs

Web Design #3

Web Design #3

9th - 12th Grade

15 Qs

Web Technologies Chapter 4 - CSS

Web Technologies Chapter 4 - CSS

10th - 12th Grade

21 Qs

CSS Styles

CSS Styles

9th - 12th Grade

20 Qs

Introduction to Cascade Style Sheets Technology

Introduction to Cascade Style Sheets Technology

9th - 12th Grade

20 Qs

HTML/CSS Review Part 2

HTML/CSS Review Part 2

9th Grade

20 Qs

Yr 11 - CSS

Yr 11 - CSS

11th Grade

22 Qs

CSS Practice Quiz

CSS Practice Quiz

Assessment

Quiz

Computers

9th - 12th Grade

Medium

Created by

Hillary Stasonis

Used 7+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What does CSS stand for?

Casting Style Sheets

Cascading Style Sheets

Computer Selector Sheets

Cascading Style Selectors

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

CSS rules are specified using selectors. What are the three possible selectors we have learned about in class?

html element (aka "tag"), class, and id

html element (aka "tag"), class, and style name

class, style, and id

div, class, and id

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Styling with CSS rules is more scalable than using a style attribute on each HTML tag that you want to style

True

False

Answer explanation

Styling individual elements using the style attribute is not very scaleable because if you wanted to change the style down the road, you would need to change it on every single element.

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

A CSS rule is comprised of:

a CSS selector and one or more declarations enclosed by curly braces.

a CSS selector and one single declaration enclosed by curly braces.

a CSS selector and one or more declarations enclosed by parentheses.

an HTML tag name and one or more declarations enclosed separated by commas.

Answer explanation

Media Image

The syntax of a CSS rule is shown here and as follows:

The selector comes first followed by an open curly brace. Then, each declaration is listed separated by semi-colons. Finally, the rule is terminated by a closing curly brace.

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is a CSS declaration?

The key-value pair of a CSS variable and its value. The variable name and value are separated by a semi-colon.

The key-value pair of a CSS property and its value. The property name and value are separated by a colon.

The key-value pair of a CSS property and its value. The property name and value are separated by an equals sign.

The key-value pair of a CSS class and its definition. The class and definition are separated by curly braces.

Answer explanation

Media Image

A CSS declaration is a combination of a property and a value separated by a colon. For example, in this code snippet, font-size is a property and 36px is a value.

You can have multiple declarations for each CSS rule.

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following is a valid CSS rule?

Media Image
Media Image
Media Image
Media Image

Answer explanation

Media Image

This is an example of valid CSS rule syntax.

Remember, property names can only be one word, and they cannot start with a number.

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following code snippets will select all <p> tags on a page and give them a font color of red?

Media Image
Media Image
Media Image
Media Image

Answer explanation

Media Image

This is an example of valid CSS rule syntax.

Remember, putting a style attribute on ONE element (aka an "inline style") does not change the style for EVERY element on the page. You must create a CSS rule to do that.

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?