I want different styles on each column of a table. I\'ve read that you could do that by using or , but I had no luck. I
You could use css selectors to get similar results without adding extra classes.
As an example if you want to give specific style to a second column you can use:
table>tbody>td:nth-child(2){font-weight: bolder;}