CSS REVIEW Questions

CSS REVIEW Questions

12th Grade

10 Qs

quiz-placeholder

Similar activities

Advanced HTML and CSS

Advanced HTML and CSS

9th - 12th Grade

15 Qs

CSS

CSS

12th Grade

15 Qs

CSS Test Review

CSS Test Review

9th - 12th Grade

7 Qs

CIW Advanced HTML

CIW Advanced HTML

9th - 12th Grade

15 Qs

HTML CSS Links

HTML CSS Links

9th - 12th Grade

15 Qs

HTML Advanced

HTML Advanced

9th - 12th Grade

15 Qs

CSS Tags

CSS Tags

12th Grade

10 Qs

CSS Tag

CSS Tag

12th Grade

10 Qs

CSS REVIEW Questions

CSS REVIEW Questions

Assessment

Quiz

Computers

12th Grade

Medium

Created by

Brent Luplow

Used 157+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Why do we use CSS?

HTML wasn't intended to style web pages, CSS allows us to add style.

Separate the content of the web page from the design of the web page.

Easily modify the look and feel of a website even at a large scale.

All of the above

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a valid css rule?

h1 {

color: blue;

}

style=color:blue";

css="color:blue";

h1 { color:blue;}

3.

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;

}

<img> {

height: 200px;

}

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following code snippets will select all HTML elements with the class “alert” and set their color to be red?

alert {

color: red;

}

.alert {

color: red;

}

#alert {

color: red;

}

class="alert" {

color: red;

}

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following CSS rules will select the HTML element with the id logo and set the font size for that element to 60 pixels?

logo {

font-size: 60px;

}

.logo {

font-size: 60px;

}

#logo {

font-size: 60px;

}

id="logo" {

font-size: 60px;

}

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does CSS stand for?

Creative Style Sheets

Colorful Style Spread

Cascading Style Sheets

Computer Style Spread

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which is the value in this CSS?

p {color: red;}

p

color

red

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?