dictates how HTML will render content that overflows its parent's content area; content-box: default value, border-box: value for new border box
Back
font-family
Front
defines the typeface of an element
Back
grid-row
Front
shorthand for grid-row-start and grid-row-end, use / between values
Back
display
Front
allows you control how an element flows vertically and horizontally a document
Back
line-height
Front
modifies the leading of text
Back
display: float
Front
can move elements as far left or as far right as possible on a web page
Back
letter-spacing
Front
kerning; increasing the spacing between individual letters
Back
grid-column
Front
shorthand for grid-column-start and grid-column-end, use / between values
Back
align-items
Front
positions grid items along the block, or column axis (start, end, center, stretch)
Back
visibility
Front
dictates how HTML will render content that overflows its parent's content area
Back
z-index
Front
specifies how far back or how far forward an element appears on the page when it overlaps other elements
Back
text-transform
Front
style text to appear in either all uppercase or lowercase
Back
grid-row-start, grid-row-end
Front
can make single grid items take up multiple rows; grid-row-start should be the row at which you want the grid item to begin, the value for grid-row-end should be one greater than the row at which you want the grid item to end
Back
padding
Front
the space between the content area and the border
Back
grid-row-gap
Front
puts blank space between rows
Back
display: inline-block
Front
can have set width and height, but they can also appear next to each other and do not take up their entire container width
Back
justify-content
Front
position the entire grid along the row axis (start, end, center, stretch, space-around, space-between, space-evenly...)
Back
overflow
Front
dictates how HTML will render content that overflows its parent's content area (display, hide, scroll)
Back
justify-items
Front
positions grid items along the inline, or row, axis (start, end, center, stretch)
Back
font-weight
Front
defines how thin or thick text is displayed
Back
span
Front
used to start or end a column or row relative to its other end
Back
position: relative
Front
element's position is relative to its default position on the page
Back
clear
Front
specifies how elements should behave when they bump into each other on the page (left, right, both, none)
Back
display: inline
Front
take up as little space as possible, and they cannot have manually-adjusted width or height
Back
font-size
Front
controls the size of text displayed
Back
border
Front
surround the content area and padding of an element
Back
color
Front
styles an element's foreground color
Back
grid-column-gap
Front
puts blank space between columns
Back
grid-column-start, grid-column-end
Front
can make single grid items take up multiple columns; grid-column-start should be the column at which you want the grid item to begin, the value for grid-column-end should be one greater than the column at which you want the grid item to end
Back
justify-self
Front
specifies how an individual element should position itself with respect to the row axis (start, end, center, stretch)
Back
align-content
Front
positions the rows along the column axis, or from top to bottom (start, end, center, stretch, space-around, space-between, space-evenly...)
Back
position
Front
allows you to specify the position of an element in three different ways
Back
align-self
Front
specifies how an individual element should position itself with respect to the column axis (start, end, center, stretch)
Back
grid-template-columns
Front
defines width of columns
Back
grid-auto-rows
Front
specifies the height of implicitly added grid rows
Back
grid-gap
Front
defines gaps between rows then columns (no /)
Back
text-align
Front
places text in the left, right, or center of its parent container
Back
background-image
Front
set the background of an element to an image
Back
background-color
Front
styles an element's background color
Back
word-spacing
Front
increase the spacing between words in a body of text
Back
margin: 0 auto
Front
horizontally centers an element inside of its parent content area, if it has a width
Back
margin
Front
the amount of spacing outside of an element's border
Back
position: absolute
Front
element's position is relative to its closest positioned parent element, can be pinned to any part of the web page, but the element will still move with the rest of the document when the page is scrolled
Back
position: fixed
Front
element's position can be pinned to any part of the web page, element will remain in view no matter what.
Back
grid-template
Front
the values before the slash will determine the size of each row, the values after the slash determine the size of each column
Back
display: block
Front
take up the width of their container and can have manually-adjusted heights
Back
font-style
Front
normal, bold, italic
Back
grid-area
Front
set the starting and ending positions for both the rows and columns of an item, grid-row-start / grid-column-start / grid-row-end /grid-column-end
Back
Section 2
(2 cards)
grid-auto-columns
Front
specifies the width of implicitly added grid columns
Back
grid-auto-flow
Front
specifies whether new elements should be added to rows or columns (row, column, dense)