The syntax of your HTML is wrong:
essa vírgula não deveria existir
↓
<img src="images/radio1.jpg" width="48px" , height="48px" />
↑ ↑
esses valores devem ser numéricos, e não aceitam px
The correct one would be:
<img src="images/radio1.jpg" width="48" height="48" />
If you want to size the image via CSS, change the element to:
<img src="images/radio1.jpg" />
And put it in your CSS:
th img{ /* seleciona img dentro do th */
width: 48px;
height: 48px
}
You can add a class in th
also:
<tr>
<th class="lista">
<img src="images/radio1.jpg" width="48px" , height="48px" />
</th>
<th>Tradição AM</th>
<th>11.750.246/0001-05</th>
</tr>
Then change the selector too:
th.lista img{ /* seleciona img dentro do th */
width: 48px;
height: 48px
}
Example:
th.lista img{
width: 48px;
height: 48px
}
<table>
<tr>
<th class="lista">
<img src="https://www.cleverfiles.com/howto/wp-content/uploads/2016/08/mini.jpg" />
</th>
<th>Tradição AM</th>
<th>11.750.246/0001-05</th>
</tr>
</table>