NEW
Font size
WorksheetsCss-BoxModel
Total questions: 25
Worksheet time: 13mins
Change the border size of the body or image
border-style
border-width
border-color
width
To create a dotted border around the page
border-style
border-width
border-color
width
sets the element to one side of the page
margin
width
float
height
sets the color of words in a paragraph
h1 {
color: pink;
}
img {
color: pink;
}
body {
color: pink;
}
p {
color: pink;
}
What does a class do?
adds color to words
adds style to specific elements
adds style to a whole page
adds a lot more work
Select the rule set to make all the text in your web page blue and centered.
p {
color: blue;
}
body {
text-align: left;
color: blue;
}
p {
text-align: center;
color: blue;
}
body {
text-align: center;
color: blue;
}
Which selector will change the font of the text?
font-size
text-align
font-famiy
text-decoration
Which rule set would change the font size to 24?
font-size: 24
size: 24;
font-size: 24;
font size: 24;
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
Which is the value in the CSS code below?
h1 {border: 29px solid red}
h1
{ }
border
29px solid red
Identify the CSS code use to create this border.
p {border: 5px solid pink;
border-radius:25px; }
p {border: 5px double pink;
border-radius:25px; }
p {border: 5px solid pink; }
p {border: 5px dotted pink;
border-radius:25px; }
Which CSS code create a white and dotted styled border.
h3 {border: 10px white pink;}
h3 {border: 10px dotted gold;}
h3 {border: 10px white dotted;}
h3 {border: 10px dotted white;}
You can customize each side of the border.
TRUE
FALSE
Which of the property changes the width, style and color of the right border?
border-top
border-bottom
border-right
border-left
A shorthand property used to specify the individual border properties: border-width, border-style and border-color.
border-bottom
border
border-left
border-top
