I'm doing a html email where I need to do a numeric list which also has an indented letter list. e.g. 1. Example a. sub example 2. Example
etc
I'm looking for something which will work across various email clients and will have the correct indentation I'm after which you get from html lists. I know you can do this by making various tables but I want a tidier way.
Here's an example of the type of code I'm looking for incase you need a bit more info to help:
<ol>
<li>Example</li>
<ol>
// Alphabet list item valid in html emails
</ol>
<li>Example</li>
</ol>
Can I just use:
<li type="a">sub example</li>
or is this invalid code for some email clients?
Thanks in advance