i have written a js for grid. gird have a feature where i am taking each column width in input like this.
mygrid._struct = [{ fieldType : "deltaHedgeType", defaultWidth : 80},
{ fieldType : "quoteccy", defaultWidth : 40 }]
So the grid html generate like this
<table id="mygrid">
<tr>
<td class="deltaHedgeType"></td>
<td class="quoteccy"></td>
</tr>
<tr>
<td class="deltaHedgeType"></td>
<td class="quoteccy"></td>
</tr>
</table>
i want this css to append in style.css
#mygrid .deltaHedgeType{
width:40;
}
#mygrid .quoteccy{
width:80;
}
what come in my mind append this css in header in tag. coz IE browser have limitation of count and also its increase the html size of the page. so how do i append this css in style.css.