CSS - Backgrounds

CSS - Backgrounds

Assessment

Flashcard

Computers

9th Grade

Hard

Created by

Marie Asuncion

FREE Resource

Student preview

quiz-placeholder

7 questions

Show all answers

1.

FLASHCARD QUESTION

Front

Which CSS embedded rule is used to assign the location of the image on a web page? Options: background-position, background-attachment, background-repeat

Back

background-position

2.

FLASHCARD QUESTION

Front

All CSS embedded code must be placed inside the [answer1] tags which is located within the [answer2] tags.

Back

style - head

3.

FLASHCARD QUESTION

Front

Which phrase must be added to CSS embedded code to stop the background image from scrolling with the text? Options: fixed, no-scroll, cover

Back

fixed

4.

FLASHCARD QUESTION

Front

What word must be added to the code "background-size:" to make the image fill the entire web page background?

Back

cover

5.

FLASHCARD QUESTION

Front

Which CSS embedded rule allows the text to scroll but the image to stay still? Options: background-attachment, background-position, background-repeat

Back

background-attachment

6.

FLASHCARD QUESTION

Front

Which line of CSS embedded code is correct to change the background color of the web page to purple?

Back

body{background-color:purple;}

7.

FLASHCARD QUESTION

Front

Which CSS embedded code adds a background image to a web page? Options: body {background-image:url("link goes here");}, body{img src="link goes here";}

Back

body {background-image:url("link goes here");}