I have a problem with strong tags inside of tables not being bolded. I have the following html code:
Here I have a fiddle for that: http://jsfiddle.net/JxQCr/
<table>
<tbody>
<tr class="row_table">
<td>2012</td>
<td><strong>this should be strong</strong></td>
</tr>
<tr>
<td>2012</td>
<td>not strong</td>
</tr>
<tr>
<td>-</td>
<td>not strong</td>
</tr>
</tbody>
</table>
You’re using JSFiddle’s
normalize.cssoption which adds a load of CSS overrides.Turn it off and everything’s fine
There are other normalisers which have better defaults for
strongtags – e.g. http://necolas.github.com/normalize.css/ – but this only proves how important it is to understand the code you’re including in your project