Forum Moderators: not2easy
Is there a way to define the "td" but only those (not other td tags in document)?
tried but didn't work, .tabla-precios.td {
font-size: .85em;
}
My code:
<table align="center" cellpadding="3" class="tabla-precios">
<tr>
<th nowrap ><h3><strong>Bla </strong></h3></th>
<th nowrap >Text</th>
<th >Text2 </th>
</tr>
<tr class="tabla-x">
<td nowrap >$ bla bla</td>
<td nowrap>$ bla </td>
<td nowrap> $ bla </td>
</tr>
<tr>
<td >bla</td>
<td>$ bla </td>
<td>$ bla </td>
</tr>
<tr class="tabla-x">
<td>more bla<b></b></td>
<td nowrap>$ bla</td>
<td nowrap>$ bla </td>
</tr>
</table>
Basically I define the tabla-precios style and tabla-x to change rows color but text should be the same size.