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

Untitled

By: a guest on Aug 5th, 2012  |  syntax: None  |  size: 0.87 KB  |  hits: 13  |  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. first-child issue on a fieldset
  2. #enterAccountInfo fieldset:first-child{
  3. }
  4.        
  5. #enterAccountInfo:first-child fieldset{
  6. }
  7.        
  8. <div id="wrapper">
  9.   <form id="enterAccountInfo">
  10.         <fieldset class="even">
  11.             <div class="centerWarpper">
  12.                 <h2 class="subtitle">blaa</h2>
  13.          </div>
  14.         </fieldset>
  15.         <fieldset class="odd">
  16.             <div class="centerWarpper">
  17.                 <h2 class="subtitle">bllll</h2>
  18.          </div>
  19.         </fieldset>
  20.         <fieldset class="even">
  21.             <div class="centerWarpper">
  22.                 <h2 class="subtitle">bllll</h2>
  23.          </div>
  24.         </fieldset>
  25.         <fieldset class="odd">
  26.             <div class="centerWarpper">
  27.                 <h2 class="subtitle">bllll</h2>
  28.          </div>
  29.         </fieldset>
  30.     </form>
  31. </div>
  32.        
  33. form#enterAccountInfo fieldset:first-child {
  34.     color: red;
  35. }​