I need to create a simple html table with labels in one column and content in another. What I want to achieve is placing a div over the content td while keeping the label visible. I am looking for the most efficient way to do this, possibly making the second td hidden by the overlay. (Bootstrap 3 is included on the page)
Any suggestions or tips would be greatly appreciated.
<tbody>
<tr>
<td>My Label</td>
<td>Overlay some div on top of this element</td>
</tr>
</tbody>