Andreas Prilop wrote:
> On Sat, 23 Aug 2008, dorayme wrote:
>
>> There is a perfectly good way that uses the semantic equivalent of
>> an ordered list, a two column table,
>
> I don't know what you mean by "semantic equivalent" - but I certainly
> cannot get automatic numbering in a table.
>
I just love a challenge!
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<meta http-equiv="content-language" content="en-us">
<title>Ha, ha</title>
<style type="text/css">
table { border: 2px solid black; --
td { border: 1px solid black; --
table { counter-reset: item; --
table tr td:first-child:before {
content: counter(item) ": ";
display: inline;
counter-increment: item;
font-weight: bold;
color: red;
--
</style>
</head>
<body>
<table>
<tr><td>one</td><td>a</td></tr>
<tr><td>two</td><td>b</td></tr>
<tr><td>three</td><td>c</td></tr>
<tr><td>four</td><td>e</td></tr>
<tr><td>five</td><td>f</td></tr>
<tr><td>six</td><td>g</td></tr>
<tr><td>seven</td><td>h</td></tr>
<tr><td>eight</td><td>I</td></tr>
</table>
</body>
</html>
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com