Is there a way to extract the IDs from HTML
example:
id="title1"
so it can be used to display content in the CSS.
<table class="layout display responsive-table">
<thead>
<tr>
<th class="th" id="title1">Title12</th>
<th class="th">Title2</th>
<th class="th">Title3</th>
<th class="th">Title4</th>
</tr>
</thead>
table.responsive-table td:nth-child(1):before {
content: use the ID here;
}
table.responsive-table td:nth-child(2):before {
content: 'Title 2';
}