Target for TM to add copy buttons
https://stackoverflow.com/q/53257754/331508
by BrockA
HTML
<table><thead>
<th>Tools</th> <th>Shipment</th> <th>Barcode</th> <th>More Info</th>
</thead><tbody>
<tr>
<td><span>✔ ✘</span></td>
<td><div class="relative"> <a href="example.com/Search?Key=123456789">123456789</a> </div></td>
<td><div class="relative"> <a href="example.com/results?s=asdfghjkl">asdfghjkl</a> </div></td>
<td><div class="relative"> <span>9870356542</span> </div></td>
</tr> <tr>
<td><span>✔ ✘</span></td>
<td><div class="relative"> <a href="example.com/Search?Key=987654321">987654321</a> </div></td>
<td><div class="relative"> <a href="example.com/results?s=qwertyuiop">qwertyuiop</a> </div></td>
<td><div class="relative"> <span>asfg456sdfg</span> </div></td>
</tr>
</tbody></table>
CSS
table { border-collapse: collapse; }
td, th {
border: 1px solid black;
padding: 0.3ex 1ex;
}
th { background-color: #EAEAEA; }