/*
  ----------------------------------------------------------
   Filename: nesting.css
   Doc Type: text/css 
             (Cascading Style Sheet, version 2)
   Author:   J. Blustein
   Version:  26 Nov 2003
   Comments: For example files sibling.html and parent.html
  ----------------------------------------------------------


      Table of Some CSS Selectors

   (blank) is  ancestor selector        
        >  is  parent selector          
        +  is  sibling selector         
        .  is  class attribute selector 
        #  is  id attribute selector    

*/

/*
   span         {font-variant:normal}
*/
   p.example > span:first-child
                {font-size:550%; font-variant:small-caps}
   span + span, 
   span > span  {font-size:smaller}

   div#borders  span > span
                {font-size:smaller; border:thin dotted green}

   pre.example  {border:medium black solid; font-family:monospace}
   div.box      {background-color:#ccf}
/* EOF */
