Your HTML syntax 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 right thing would be:
<img src="images/radio1.jpg" width="48" height="48" />
If you want to set the image dimensions via CSS, change the element to:
<img src="images/radio1.jpg" />
And put in your CSS:
th img{ /* seleciona img dentro do th */
width: 48px;
height: 48px
}
You can add a class to 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>
There changes 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>
Yes you can create a class and then edit the sizes, colors etc in your CSS
– Mike Otharan
but where? inside th? at the beginning of tbody? tr?
– SHRIMP