WorksheetsIntroduction to HTML/CSS Quiz 4: Advanced HTML
Total questions: 7
Worksheet time: 21mins
What does the <span> tag do?
Defines a small selection of text
Defines multiple tags to be formatted
Creates a divider in the page
Creates an airplane on the page
What does the <div> tag do?
Defines a small selection of text
Defines multiple tags to be formatted
Creates a divider in the page
Does division
Which is correct syntax to define width and height?
#page-content {
width: 50vw;
height: 50vh;
}
#page-content {
width: 50vh;
height: 50vw;
}
#page-content {
item-width: 50vw;
item-height: 50vh;
}
#page-content {
tag-width: 50vw;
tag-height: 50vh;
}
Which tags help prevent overflow?
<overflow-width> and <overflow-height>
<overflow-vertical> and <overflow-horizontal>
<overflow-x> and <overflow-y>
<overflow-up> and <overflow-side>
What is a margin?
The space between HTML items
The space within an HTML item
A type of fake butter
An important thing
What is padding?
The space between HTML items
The space within an HTML item
What is required for a good pillow
An important thing
How is the border CSS property written?
border: [size] [style] [color];
border: [color] [style] [size];
border: [size] [color] [style];
border: [style] [color] [size];
