• 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/10

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;

10 Cards in this Set

  • Front
  • Back
CSS
Cascading Style Sheets, the computer code that defines the visual presentation of web pages.
Rule
The entirety of a CSS selector and its declarations.

ex:
h1 {color:blue; font-size:12px;}
Selector
CSS syntax that defines elements on a page to which declarations should be applied.

ex:
h1 {color:blue; font-size:12px;}

"h1" = selector
Declaration
Pairs of CSS properties and values that define how an element should be styled.

h1 {color:blue;}

"color:blue" = declaration
Property
CSS syntax that defines which part of an element should be styled, such as its color, size, position, and so on.

h1 {color:blue;}

"color" = property
Value
CSS syntax that sets the variable units for properties.

h1 {color:blue;}

"blue" = value
Identify the value.

h1 {color:blue;}
blue
Identify the property.

h1 {color:blue;}
color
Identify the selector.

h1 {color:blue;}
h1
Identify the declaration.

h1 {color:blue;}
color:blue;