NEW
Font size
WorksheetsG10_Q1_T1
Total questions: 20
Worksheet time: 11mins
p {color: red;}
Which of the following is the correct CSS link tag?
<link rel="styles" href="stylesheet.css">
<link href="stylesheet">
<link rel="stylesheet" src="styles.css">
<link rel="stylesheet" href="styles.css">
What symbol should you use to target a class name in css?
#
()
.
class
The color this element will be________
Blue
Red
green
No color
Looking at the picture below, based on those 3 important rules to remember, what will the color of the text be?
Red
Blue
No color
White
What color will this element be?
Green
Blue
Red
No color
The blue is called an _____________
Declaration
Selector
Property
Value
The blue is called an _____________
Declaration
Selector
Property
Value
The blue is called an _____________
Declaration
Selector
Property
Value
The blue is called an _____________
Declaration
Selector
Property
Value
This is a picture of a ____.
CSS Rule
HTML Rule
Tags
Coding
Which CSS embedded rule is used to assign the location of the image on a web page?
background-position
background-attachment
background-repeat
Which of the following phrases must be added to CSS embedded code to stop the background image from scrolling with the text?
fixed
no-scroll
cover
What word must be added to the code "background-size:" to make the image fill the entire web page background?
cover
fill
replace
Which CSS embedded rule allows the text to scroll but the image to stay still?
background-attachment
background-position
background-repeat
Which line of CSS embedded code is correct to change the background color of the web page to purple.
body{background-color:purple;}
<body style="background-color:purple;>
body{color:purple;}
How to display a background image in the above format:
background-repeat: repeat-x;
background-image: repeat;
background-repeat: horizontal;
background-image: repeat-y;
Identify CSS property to assign position for a background image.
display: value;
position: value
background-postion: value;
align: value;
