0
I am studying HTML to use in email marketing and was looking at this email here: I understood the beginning of the code, but did not understand the application of colspan:
<tr>
<td>
<a href="https://www.facebook.com/FGV-Energia-1579891958938780/?fref=ts" target="_blank"><img src="http://www.fgv.br/mailing/2017/fgv_energia/boletim/marco/imagens/dez_01_01.jpg" width="96" height="52" alt="" style="display:block" border="0"></a>
</td>
<td>
<a href="https://www.linkedin.com/company/10274929?trk=tyah&trkInfo=clickedVertical%3Ashowcase,clickedEntityId%3A10274929,idx%3A2-1-2,tarId%3A1459366866829,tas%3Afgv energia "><img src="http://www.fgv.br/mailing/2017/fgv_energia/boletim/marco/imagens/dez_01_02.jpg" width="58" height="52" alt="" style="display:block" border="0"></a>
</td>
<td>
<a href="http://www.fgv.br/energia" target="_blank"><img src="http://www.fgv.br/mailing/2017/fgv_energia/boletim/marco/imagens/dez_01_03.jpg" width="446" height="52" alt="" style="display:block" border="0"></a>
</td>
</tr>
<tr>
<td colspan="4">
<img src="http://www.fgv.br/mailing/FGV_Energia/boletim/2017/jun/01.png" alt="Header: Boletim de Conjuntura do Setor Energético- Junho 2017" width="599" height="421" border="0" style="display:block"></td>
</tr>
And if I take off the colspan, the top of the layout moves to the left.
If the other row has 3 columns, no colspan, colspan="4" makes no sense.
– bfavaretto
@bfavaretto and probably an error of who originally created the email - note that in the image provided by OP the bottom has an extra pixel on the right side, which may be a reserve of space on the TR for the extra cell.
– OnoSendai