CSS - Styling Websites Quiz

CSS - Styling Websites Quiz

11th Grade

6 Qs

quiz-placeholder

Similar activities

Cascading Style Sheets

Cascading Style Sheets

8th - 12th Grade

11 Qs

Web Design: Tables & Styling

Web Design: Tables & Styling

9th - 12th Grade

11 Qs

HTML/CSS

HTML/CSS

11th Grade

10 Qs

CSS coding

CSS coding

11th Grade

10 Qs

Divis

Divis

11th Grade - University

8 Qs

Code.org (Unit 2)

Code.org (Unit 2)

7th - 12th Grade

10 Qs

Gmetrix HTML & CSS Session 4 Test

Gmetrix HTML & CSS Session 4 Test

9th - 12th Grade

10 Qs

Web Design Pre-Test

Web Design Pre-Test

9th - 12th Grade

11 Qs

CSS - Styling Websites Quiz

CSS - Styling Websites Quiz

Assessment

Quiz

Computers

11th Grade

Hard

Created by

Spartan Coders

Used 109+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a valid CSS rule?

h1 {

color: blue;

}

<h1> {

color: blue;

}

h1 {

color="blue";

}

h1 {

color=blue;

}

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following ranks the selectors from highest precedence to lowest precedence?

Select by tag name, select by class name, select by id name

Select by id name, select by tag name, select by class name

Select by id name, select by class name, select by tag name

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following statements are true about styling your web pages with CSS:

I. Styling with CSS is more scalable than using style= on each HTML tag that you want to style

II. You can create styles with CSS that are not possible using style= on an HTML tag

I only

II only

I and II

Neither I nor II

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following code snippets will select all <img> tags on a page and give them a height of 200 pixels?

<img style="height:200px;">

tag="img" {

height: 200px;

}

img {

height: 200px;

}

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Suppose you have the following CSS rules:

p {

color: green;

}


.fire {

color: red;

}


#title {

color: blue;

}

What font color will the following HTML element have after being styled by the given CSS:

<h1 class="fire">Welcome!</h1>

green

Notes: Not quite! Since the tag has the class “fire” it will be styled according to the second rule, giving it the color red.

red

Notes: Correct! Since the tag has the class “fire” it will be styled according to the second rule, giving it the color red.

black

Notes: Not quite! Since the tag has the class “fire” it will be styled according to the second rule, giving it the color red.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Suppose you have the following CSS rules:

p {

color: green;

}


.fire {

color: red;

}


#title {

color: blue;

}

What font color will the following HTML element have after being styled by the given CSS:

<p class="title">My First Paragraph</p>

blue

green

black