CSS Selectors

CSS Selectors

9th - 12th Grade

5 Qs

quiz-placeholder

Similar activities

مراجعة عامة في العلامات المخصصة للغة الـ HTML

مراجعة عامة في العلامات المخصصة للغة الـ HTML

10th Grade

7 Qs

Quiz HTML kelas 9

Quiz HTML kelas 9

9th - 12th Grade

10 Qs

HTML(1)

HTML(1)

10th Grade

10 Qs

HTML

HTML

10th Grade

10 Qs

ôn giưa ki 2 tin12

ôn giưa ki 2 tin12

12th Grade

10 Qs

Kuis Dasar-Dasar HTML

Kuis Dasar-Dasar HTML

9th Grade

10 Qs

HTML Basics

HTML Basics

9th Grade - Professional Development

9 Qs

7.2 Knowledge check

7.2 Knowledge check

9th Grade

10 Qs

CSS Selectors

CSS Selectors

Assessment

Quiz

Computers

9th - 12th Grade

Medium

Created by

Richard Ghiorse

Used 4+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which symbol is used to indicate a CSS class selector?

. (a period)

# (a hashtag)

; (a semicolon)

: (a colon)

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which symbol is used to indicate a CSS id selector?

. (a period)

# (a hashtag)

; (a semicolon)

: (a colon)

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Suppose there is a CSS class called fancy that already exists. Which of the following bits of HTML code correctly uses the fancy class?

<p .fancy>I'm fancy!</p>

<p class fancy>I'm fancy!</p>

<p class="fancy">I'm fancy</p>

<p .fancy class>I'm fancy</p>

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Suppose there is a CSS id called uniquestyle that already exists. Which of the following bits of HTML code correctly uses the uniquestyle id?

<h1 #uniquestyle>I have a unique style!</h1>

<h1 id="uniquestyle">I have a unique style!</h1>

<h1 #iduniquestyle>I have a unique style!</h1>

<h1 .uniquestyle>I have a unique style!</h1>

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct CSS code for a class codefont that will style elements of that class with Courier New font?

#codefont {

font-family: "Courier New", monospace;

}

codefont {

font-family: "Courier New", monospace;

}

.codefont {

font-family: "Courier New", monspace;

}

.codefont {

font-family: "Courier New" monospace

}