Here is my HTML structure showcasing details within a table:
<table spacing="15">
<tr>
<td>
<img src="Images/user1.png" />
<label>
User</label>
</td>
<td>
John
</td>
</tr>
<tr>
<td>
<img src="Images/version1.png" />
<label>
Old ID</label>
</td>
<td>
345345
</td>
</tr>
<tr>
<td>
<img src="Images/version3.png" />
<label>
New ID</label>
</td>
<td>
367976
</td>
</tr>
</table>
I'm attempting to add margin-top to the image for a slight shift downward, however, the CSS isn't taking effect. Any guidance on how to achieve this?
Additionally, I've noted that cellspacing is not a recognized attribute in HTML5. Is there an alternative property to achieve a similar effect?