I use this CSS code to highlight none empty <td>
's:
td:not(:empty) {
background-color: #9ac99d;
}
Is there a similar way to highlight values ,lets say, which are greater than 2? I mean without making any changes on the html, without using ids,classes etc.