I am facing an issue with the following code:
<tr>
<td class="someclass">
<input />
</td>
...
<td> </td>
<td> </td>
..
</tr>
I am looking to override the CSS class "someclass" that is only applied to the first <td>
element containing an <input>
. Is there a way to achieve this, possibly using parent specifications or another method? Please note that I am unable to add any new classes.