Skip to content

Instantly share code, notes, and snippets.

@alpha1
Last active October 11, 2018 22:20
Show Gist options
  • Save alpha1/da0192de8e6cc91c43ee9f86950d69c3 to your computer and use it in GitHub Desktop.
Save alpha1/da0192de8e6cc91c43ee9f86950d69c3 to your computer and use it in GitHub Desktop.
Table Based UL for HTML emails
<table width="100%" style="border-collapse:collapse; width:100%">
<tbody>
<tr>
<td valign="top" width="30" style="width:30px;">&nbsp;</td><!--remove this row is you don't want the default indent-->
<td valign="top">&bull;&nbsp;</td>
<td valign="top" style="">Bullet A</td>
</tr>
<tr>
<td valign="top" width="30" style="width:30px;">&nbsp;</td>
<td valign="top">&bull;&nbsp;</td>
<td valign="top" style="">Bullet B</td>
</tr>
<tr>
<td valign="top" width="30" style="width:30px;">&nbsp;</td>
<td valign="top">&bull;&nbsp;</td>
<td valign="top" style="">Bullet C</td>
</tr>
<tbody>
</table>
<!--
You may want to add a <span style="font-size: 18px;"> around the &bull;
Remember to style each TD with the fonts you want to show up.
-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment