I need to hide a specific portion of text in an HTML code snippet, however, the text is not wrapped in any specific element. Here is an example:
<div class="content">
Give comfortable and durable place to work with a desk.
Lock the center drawer and all of the drawers lock,
keeping your files and supplies secure.
<table cellpadding="4" cellspacing="0">
<tbody>
<tr>
<th align="right">Available Options:</th>
<td>Desktop Color: Fusion Maple, Gray Nebula...</td>
</tr>
<tr>
<th align="right">Book Box Construction:</th>
<td>Not applicable</td>
</tr>
</tbody>
</table>
</div>
Is there a way to hide just the "Give comfortable and durable..." part without altering the existing HTML structure? I'm looking for a CSS solution, but open to using JavaScript if necessary. Ideally, CSS-only would be preferred. Any suggestions?