how to solve this?

0
.currency::before {content: "$"; } i have use class “currency” for $ (in data grid). but i dont want dollar symbol in heading. i just want it before integer value. and also like in one line  eg.. $102.365. so how to achieve this?
asked
1 answers
1

You would need to check the markup inside your data grid, but if you have applied the currency class the column, something like this should work.
 

td.currency div:before {
    content: "$";
}

Here we’re saying that we want to apply the style to the content of div elements inside td elements with a class of currency.

Hope this helps

answered