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

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;

11 Cards in this Set

  • Front
  • Back

What is the pseudo-class for unvisited links

:link

What is the pseudo-class for visited links

:visited

pseudo-class for mouse pressed down on link

:active

PsClass for an element that has focus when input:focus selects the input that has focus

:focus

What is type of selector is the following an example of and what does it do?


p:lang(en)

:lang(language)

selects all paragraphs with a lang attribute of en.


What is type of selector is the following an example of and what does it do? div:not("#mainContainer")

:not


Selects all divs that do not have the ID selector of mainContainer

Which elements does this select in a list of 60 divs?




div:nth-child(13n + 5);





18, 31, 44



what does this do


option:nth-child(odd)

selects odd numbered option tags.

What is n


nth-last-child(n)




Waht does li:nth-last-child(4) do?

Number away from the end. Not 0 based.




Selects 4th list item from the end of a list.

Selects elements that are the only child of the parent.



:only-child




<ol>


<li id='firstItem'>


</ol>




<ol>


<li>


<li>


</ol>




Only selects first item.

Selects elements that are the only child of the parent and have the specified type.


Name an example

:only-of-type


div:only-of-type