Dollar Sign for Data Grid Column

0
Hello,    I am using the following class to add a $ before the data in a column however it is also appearing in the header of the column which I do not want:    .dollar-sign::before {      content: "$" !important;     position: absolute;     top: 9px; }   How do I make this only apply to the row data and not on the actual header of the column?    Thank you in advance. 
asked
1 answers
0

Hi Alexander,

I think “first-child” can help you solve this: https://stackoverflow.com/questions/4013701/select-all-tr-except-the-first-one.

Good luck!

answered