Jerome
07-11-2003, 09:15 AM
Hi,
When You have an ordered list <ol> with list elements <li> inside it, the roman characters are counting up nicely, see below:
CSS:
li{
list-style-type:upper-roman;
}
HTML:
<ol>
<li start="1">SOMETHING</li>
<li start="2">SOMETHING</li>
<li start="3">SOMETHING</li>
<li start="4">SOMETHING</li>
</ol>
Now, without using <ol> , see below, I still get the roman characters but they do not count up anymore. I suppose they always need to be in an ordered list, not?
CSS:
li{
list-style-type:upper-roman;
}
HTML:
<li start="1">SOMETHING</li>
<li start="2">SOMETHING</li>
<li start="3">SOMETHING</li>
<li start="4">SOMETHING</li>
Jerome
When You have an ordered list <ol> with list elements <li> inside it, the roman characters are counting up nicely, see below:
CSS:
li{
list-style-type:upper-roman;
}
HTML:
<ol>
<li start="1">SOMETHING</li>
<li start="2">SOMETHING</li>
<li start="3">SOMETHING</li>
<li start="4">SOMETHING</li>
</ol>
Now, without using <ol> , see below, I still get the roman characters but they do not count up anymore. I suppose they always need to be in an ordered list, not?
CSS:
li{
list-style-type:upper-roman;
}
HTML:
<li start="1">SOMETHING</li>
<li start="2">SOMETHING</li>
<li start="3">SOMETHING</li>
<li start="4">SOMETHING</li>
Jerome