I have this table:
<table>
    <thead>
        <tr>
            <th>Example 1</th>
            <th>Example 2</th>
            <th>Example 3</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Example text 1</td>
            <td>Example text 2</td>
            <td><input type="text" /></td>
        </tr>
    </tbody>
</table>
I want to apply styles only to tds that don't include input tag.
How to do that?
 
    