• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/20

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

20 Cards in this Set

  • Front
  • Back

color

Sets the text color of an element. Accepts any CSS color unit.

background-color

Sets the background color of an element. Accepts any CSS color unit.

text-decoration

Primarily used to add or remove underlines from text.

max-width

Sets the maximum width of an element. Accepts any CSS length unit.

margin

Sets the space around the exterior four sides of an element. Accepts any CSS length unit.

padding

Sets the space on the interior four sides of an element. Accepts any CSS length unit.

text-align

Sets the justification of text, similar to a word processor. For example, text can be set to be aligned to the left, right, or center.

font-family

Defines which fonts should be applied to text.

font-size

Sets the size of text in either relative or absolute units.

list-style

Sets the style of numbers or bullet points for ordered and unordered lists. The marks can also be removed entirely with the value "none".

float

Allows an element to be taken out of the normal flow and placed to the left or right of its container. Text and other inline elements will wrap around it.

clear

The clear property specifies whether an element can be adjacent to floated elements or if it should be moved down and "clear" any floated elements.

display

Sets whether an element should be rendered as a block element, inline element, or inline-block element.

border-radius

Defines the roundness of a border corner. Accepts any CSS length unit.

background-image

Accepts an image path that applies the file to the background of an element.

background-size

Sets the size of background images.

background-repeat

Sets whether or not a background image should be repeated. By default, backgrounds will repeat.

@media

Media queries use the @media CSS rule to define conditions of the browser medium. In other words, it allows for CSS styling to only be included if certain conditions are met, such as a specific browser width.

:nth-child(An+B)

The nth-child pseudo-class matches A(n)+B-1 siblings in the document tree. The A value that precedes n is required. By itself, this will match every "nth" element in a group. Both A and B must be integers.

border

CSS shorthand property that allows for a visual outline or "border" to be applied to an element. Accepts a length unit to define the border-width, a keyword to define the border-style, and a color unit for the border-color.