ul
Define an unordered list using <li> ... </li> tags.
Usage:
<ul>
<li> ... </li>
... etcetera ...
</ul>
OR
<ul type="none|circle|disc|square">
<li> ... </li>
... etcetera ...
</ul>
Best Practice Example:
<ul>
<font face="Times,serif" size="2" style="font: 1.0em Times,serif;">
<b>New Cereals This Month:</b>
<li><font face="Times,serif" size="2">Sugar-Glazed Handballs</font></li>
<li><font face="Times,serif" size="2">Shredded Packing Material</font></li>
<li><font face="Times,serif" size="2">Fear Smacks</font></li>
<li><font face="Times,serif" size="2">Lobsta Fahts</font></li>
</ul>
type<li> tag.<ul> definition tag.
<b>Rudest Drivers:</b>
<ul>
<font face="Times,serif" size="2" style="font: 1.0em Times,serif;">
<li><font face="Times,serif" size="2">Volkswagen</font>
<ul>
<li><font face="Times,serif" size="2">Jetta</font>
<li><font face="Times,serif" size="2">Golf</font>
<li><font face="Times,serif" size="2">Passat</font>
</ul></li>
<li><font face="Times,serif" size="2">BMW</font>
<ul>
<li><font face="Times,serif" size="2">320i</font>
<li><font face="Times,serif" size="2">520i</font>
<li><font face="Times,serif" size="2">Z4 M</font>
</ul></li>
<li><font face="Times,serif" size="2">Jaguar</font>
<ul>
<li><font face="Times,serif" size="2">XK</font>
<li><font face="Times,serif" size="2">XJ</font>
<li><font face="Times,serif" size="2">R5</font>
</ul></li></ul>
<ul> tag
as being a larger size than the text actually displayed by the list, you will get an effect similar to what
the line-height CSS property accomplishes, as the bullet points do not change size.
NOTES:
This type of formatted list will work in all known e-mail clients, as long as
the same bullet point is used throughout the unordered list.
Evolution craps itself if it encounters a new bullet type within an unordered list
and reverts to ordered list numbering. Evolution also does not understand the
start="" tag attribute and will always start a list at item 1.
The list-style-type style property (which can be used in the
<ul> tag) does not work in all mail clients. Ordinarily
you would define this like: <ul style="list-style-type: none;">, which
would render any elements in that list without any bullet points. This was once used as
an indented paragraph trick by HTML designers, even though it was faulty because implied
list margin indentation space varies from browser to browser.
Many people think that the closing tag </li> is optional.
If you were writing straight HTML, it might be. If you were writing cross-browser XHTML
(which you should be if you are writing e-mails), it is REQUIRED.
This reference was created for Innovyx by Steve Cartoon Q3 2007. All rights reversed.