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

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;

17 Cards in this Set

  • Front
  • Back
Contextual Selectors
Elements are nested within other elements on a webpage creating a hierarchical structure. In CSS they express the location within that structure #notes h1 { color: red; }
When you would use classes in CSS
to identify an object(s) inside an element to give it (them) styles, instead of using id you can assign the same style to multiple elements sharing the same class value
Syntax to work with classes in CSS
.class { style }
pseudo-classes
classification of an element based on its current status, position, or use in the document
pseudo-class: link
not visited by the user
pseudo-class: visited
the link has been visited by the user
pseudo-class: active
the link is in the process of being visited by the user
pseudo-class: hover
the mouse pointer is being hovered over link
absolute positioning
place an element at specific coordinates
relative positioning
the browser default
fixed positioning
element is placed in a specific spot in the doc window while the rest of the page scrolls by
overflow style
when you want to force an element into a specified height & width, you have to define how the browser will handle a situation where content overflows the space allotted to the object
clip style
this allows you to define a rectangle through which an element's content can be viewed, anything beyond the boundary of the rectangle is hidden
z-index
order of appearance within overlapping positioned elements
function of media types in CSS
used to describe output type screen for the web, print clean format (printer friendly), mobile & other devices
< link rel="stylesheet" type="text/css" href="x.css" media="print" / >
media groups
visual, aural, tactile grid (for character grid devices) or bitmap interactive (for devices that do not allow interaction)
invisible element
element, element { visibility: hidden; }