Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 28th, 2012  |  syntax: None  |  size: 0.27 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. CSS adjacent sibling selectors, Safari and <nav> elements
  2. h1 + p { ... } /* works fine */
  3. h1+p { ... } /* works fine */
  4.        
  5. h1 + nav { ... } /* works fine */
  6. h1+nav { ... } /* but, does NOT work */
  7.        
  8. h1 ~ nav { ... } /* works fine */
  9. h1~nav { ... } /* works fine */