I wanted to find out how the BBC News site lays out the images in the content. The text that comes after the image tag in the source code actually appears before the image when viewed in a browser. Is this normal? Here is the source snippet:
----------------------
<table cellspacing="0" align="right" border="0" width="203" cellpadding="0">
<tr><td>
<img height="152" hspace="0" vspace="0" border="0" width="203" alt="UK tank in Iraq AP" src=" />
</td></tr>
</table>
It says there is no cause for alarm, but urges precautions and regular monitoring.
----------------------
I would have thought that the way to produce this sort of result would be to have 2 rows in a table, having the text "It says there is no cause for alarm" in the first <TD> tag and then have the image in a second <TD> tag.
Any thoughts on this?
Thanks,
May
----------------------
<table cellspacing="0" align="right" border="0" width="203" cellpadding="0">
<tr><td>
<img height="152" hspace="0" vspace="0" border="0" width="203" alt="UK tank in Iraq AP" src=" />
</td></tr>
</table>
It says there is no cause for alarm, but urges precautions and regular monitoring.
----------------------
I would have thought that the way to produce this sort of result would be to have 2 rows in a table, having the text "It says there is no cause for alarm" in the first <TD> tag and then have the image in a second <TD> tag.
Any thoughts on this?
Thanks,
May