In CSS, how can I select all <tr> elements where their id begins with section_ and ends with _dummy?
E.g. I'd like to select and apply styles to the following <tr>’s:
<tr id="section_5_1_dummy">
<td>...</td>
</tr>
<tr id="section_5_2_dummy">
<td>...</td>
</tr>