[Seaside] Dumb HTML question

Kamil Kukura kamk@volny.cz
Fri, 07 Jun 2002 15:17:45 +0200


 >
 >
 >"Jim Benson" <jb@speed.net> is claimed by the authorities to have written:
 >
 >
 >>Tim,
 >>
 >>The HTML for that is along the lines of:
 >>
 >><OL TYPE="a">
 >>    <LI>Choose Open fromt the file menu</LI>
 >>    <LI>Locate the file you wish to edit</LI>
 >>    <LI>Click the open button</LI>
 >>
 >>
 >Cool! Seems to work ok for a, A, i & I as well. Looking on the official
 >W3C website claims it is deprecated and that I should use stylesheets
 >whatever the hell they are. Whatever happened to html being simple?
 >
 >tim
 >
 >
While <OL> indicates that there is structure of ordered items with
subsequent <LI>'s inside, stylesheet is used to control visualization of
element and its content.

<ol style="list-style-type: lower-alpha;">
      <li>Choose Open fromt the file menu</li>
      <li>Locate the file you wish to edit</li>
      <li>Click the open button</li>
</ol>

-- 
Kamil