Find the span from the series of div and apply style to it

Find the span from the series of div and apply style to it.
  1. #columntablejqxgrid div[role="columnheader"]:first-child span{  
  2.    text-align: left!important;   
  3.  } 
 It will find out the div which has ID as "columntablejqxgrid" and from that it finds the inner divs whose role is "columnheader". And once it finds the filtered divs it takes the first child and take the span.