0
How to link image in a table cell
How we can link a image in a table
4 Antworten
+ 17
<tr>
<td><img src="image.jpeg" /></td>
</tr>
+ 17
@Burey lol 😂😂😂 I can never, I m ultra begginer compared to u...
btw I m waiting to see more of ur Angular JavaScript lessons ... Thanks for sharing ur great knowledge...
+ 8
encapsulate the <img> inside the <td> tag
<table>
<tr>
<td><img src="....." /></td>
</tr>
</table>
above is a table with single row (<tr>), single column (<td>) with an image inside the column
edit:
@DT beat me to it 😅
+ 7
thanks for the angularJS feedback
unfortunately, i do not have much free time, so hopefully someone else will pick up where i left ^__^