+ 1
How we can insert an image inside the table cell?
Image problem
2 odpowiedzi
+ 1
Same as you insert image normally, but put it inside td tag
0
<table>
<tr>
<td>
<img src="img.png"/>
</td>
<td>
Another cell with text
</td>
</tr>
</table>