I tried this:
<style type="text/css">
td.orange : before { background: #DD5F15; content : "TRIPLE";}
</style>
But I believe it adds the content provided after the closing "td" tag, which is why it doesn't show up. Basically, I just want all the "orange" table cells to just have the text "TRIBLE" inside them.
You have
td.orange : before { background: #DD5F15; content : "TRIPLE";}
Try this (remove spaces before and after of colon : )
td.orange:before { background: #DD5F15; content : "TRIPLE";}
Working Example.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With