Posted by brucie on 11/10/05 19:41
In post <news:k%Kcf.1189$FW4.990@tornado.tampabay.rr.com>,
Shank said:
> How do I control the font, size, color etc. for the numbers in an ordered
> list? Without changing the list content.
li{color:red;}
li+li{color:green;}
li+li+li{color:blue;}
li p{color:black;}
<ol>
<li><p>red
<li><p>green
<li><p>blue
</ol>
but thats not supported by prehistoric IE
#red{color:red;}
#green{color:green;}
#blue{color:blue;}
li p{color:black;}
<ol>
<li id="red"><p>red
<li id="green"><p>green
<li id="blue"><p>blue
</ol>
--
l i t t l e v o i c e s
[Back to original message]
|