User71929859 posted
because there are different tables in every page so how can I tell the CSS which titles to use for which table?
Assign a class to the table and then you can change the css like below
.className td:nth-of-type(1):before { content: "Status"; }
.className td:nth-of-type(2):before { content: "Paid"; }
.className td:nth-of-type(3):before { content: "Category"; }
.className td:nth-of-type(4):before { content: "From"; }
.className td:nth-of-type(5):before { content: "To"; }
.className td:nth-of-type(6):before { content: "Total Days"; }
Your table should define like below
<table class="className"></table>