I have a table with some images that I want to start without any images in them. I set src = "". But when viewed in a browser, it shows photos with a broken image.
<tr>
<td><img src=""> </td>
<td><img src=""> </td>
<td><img src=""></td>
</tr>
How can I prevent the browser from showing photos with a broken image or X or something else until I put some data in the src attribute.
source
share