Last active
October 11, 2018 22:20
-
-
Save alpha1/da0192de8e6cc91c43ee9f86950d69c3 to your computer and use it in GitHub Desktop.
Table Based UL for HTML emails
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<table width="100%" style="border-collapse:collapse; width:100%"> | |
<tbody> | |
<tr> | |
<td valign="top" width="30" style="width:30px;"> </td><!--remove this row is you don't want the default indent--> | |
<td valign="top">• </td> | |
<td valign="top" style="">Bullet A</td> | |
</tr> | |
<tr> | |
<td valign="top" width="30" style="width:30px;"> </td> | |
<td valign="top">• </td> | |
<td valign="top" style="">Bullet B</td> | |
</tr> | |
<tr> | |
<td valign="top" width="30" style="width:30px;"> </td> | |
<td valign="top">• </td> | |
<td valign="top" style="">Bullet C</td> | |
</tr> | |
<tbody> | |
</table> | |
<!-- | |
You may want to add a <span style="font-size: 18px;"> around the • | |
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