Advertisement
Northys

Untitled

Jul 26th, 2014
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.75 KB | None | 0 0
  1. All CSS Pseudo Classes/Elements
  2. Selector    Example Example description
  3. :link   a:link  Selects all unvisited links
  4. :visited    a:visited   Selects all visited links
  5. :active a:active    Selects the active link
  6. :hover  a:hover Selects links on mouse over
  7. :focus  input:focus Selects the input element which has focus
  8. ::first-letter  p::first-letter Selects the first letter of every <p> element
  9. ::first-line    p::first-line   Selects the first line of every <p> element
  10. :first-child    p:first-child   Selects every <p> elements that is the first child of its parent
  11. ::before    p::before   Insert content before every <p> element
  12. ::after p::after    Insert content after every <p> element
  13. :lang(language) p:lang(it)  Selects every <p> element with a lang attribute value starting with "it"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement