What is font-family?
This CSS property changes the typeface (font) of text.
What does CSS stand for?
Cascading style sheets
Four parts of the CSS Box model
Margin, border, padding, content
What is a popular CSS framework that helps create responsive designs and reusable components.
Property that controls the thickness, style, and color of an element’s border.
What is line-height
This CSS property controls spacing between lines of text.
What section of your html do you link your external style sheet?
If an HTML element has class="menu", how would you write a CSS selector that targets only elements with both classes?
.menu
What style will be applied to the <p> element in this HTML/CSS?
<p class="intro">Hello World</p>
p {
color: red;
}
.intro {
color: green;
}Write a CSS rule to make all <h2> elements use the font “Verdana”, bold, and colored dark green.
h2 {
font-family: Verdana, sans-serif;
font-weight: bold;
color: darkgreen;
}
What is rgb()?
This CSS function defines colors using red, green, and blue values.
What is hexadecimal color?
This color format begins with a # symbol and then six digits from A-F, 0-9 giving you your red, green, and blue values.
What are the three types of CSS?
Inline, internal, and external
How would you select all <li> elements inside a <ul> with class menu?
<ul class="menu"> <li>Home</li> <li>About</li> </ul>
.menu li { }
Write me CSS changing the font color using INLINE styling of an h1 tag
<h1 style="color: red;">
The correct order of the shorthand CSS margin property values is?
Top, right, bottom, left
What is inheritance?
This CSS behavior allows child elements to receive styles from parents.
CSS property that sets the stacking order of positioned elements.
z-index
In Bootstrap, this class is used to create a grid container.
.container
<style>
</style>
</head>
What is em?
This CSS unit is relative to the parent font size. Used for sizing, not pixels.
Full syntax for linking an external stylesheet
<link rel="stylesheet" type="text/css" href="styles.css">
What are the two aria states?
aria-checked, aria-expanded
How do you start a media query?
@media
Bootstrap’s grid system is based on how many columns?
12