Is it possible to customize CSS only of one table cell?
Yes!
- If content of the cell is constant – it is possible use generated CSS class as on the screen: hashXXXXXX
- Also each cell has CSS class, dependent of the field of the current table cell
- Also table cell has data-attributes: data-pid, data-key, data-field
td[data-pid="13287"][data-key="price"]{ background: red; } td[data-pid="14281"][data-key="price"] { background: green; }
- As you can see above using 2 data-attributes allows targeted customizing of tablesĀ cells, and using this way you can customize the same column cells in different rows to styles you need
- Small customization do in the tab “Custom CSS“: