In table
, if I apply bold ( <b>
) out of cells ( <td>
), it does not work:
<table>
<tr>
<b>
<td>Cell A</td>
<td>Cell B</td>
<td>Cell C</td>
<td>Cell D</td>
</b>
</tr>
</table>
If you apply inside, (obvious) it works, but I have to put in all you want:
<table>
<tr>
<td><b>Cell A</b></td>
<td>Cell B</td>
<td><b>Cell C</b></td>
<td>Cell D</td>
</tr>
</table>
- Why does this occur?
- The only way would be put manually in each cell, or
CSS
? - Does it work in range of other tag types ?