NEW
Font size
WorksheetsIntroduction to HTML/CSS Quiz 5: Advanced CSS
Total questions: 7
Worksheet time: 21mins
What is a font family?
The last name of the font
The style of the text
The size of the text
The decoration of the text
Which is the correct syntax for changing the text size?
text-size: 75px;
text-height: 75px;
font-size: 75px;
font-height: 75px;
How would I make text italic?
text-style: italic;
font-style: italic;
font-decoration: italic;
text-decoration: italic;
The text-align property is used to
put all of the text in a vertical line
position the text on the webpage
only center the text
move the text to the bottom of the page
What is inheritance with CSS styling?
Anything placed inside of a styled HTML element will also have that style
HTML elements inside of others have the same genes as the parent elements
HTML elements inside of others give their styling to the parents
Anything placed inside of a styled HTML element will never have that style
Inheritance only applies when child HTML elements aren't specifically styled
True
False
Sizing can only be done using pixels
True
False
