I also found i could use decimal-leading-zero, but that give me 01, 02, 03, and not 3.1 , 3.2 … also require it to start on 3 and later on 11.
::fyi:: i passed this by simp and he found a w3 doc that uses manually entered 2.1.1 in a ul list. By seeing that we both believe its probably something css cannot do by thought i would pass it by you guys/girls anway
Yeah I couldnt find the real solution either…
Just using nested <ol>'s might help? (gives indented numbers for second level)
<ol>
<li>dfgdhsldjks</li>
<li>dfgdhsldjks</li>
<ol>
<li>dfgdhsldjks</li>
<li>dfgdhsldjks</li>
</ol>
<li>dfgdhsldjks</li>
<li>dfgdhsldjks</li>
</ol>
thanks guys, still dosent get me a list with 3.1, 3.2.
its all good, it dosent seem possible, simp did show me a counter-increment method which i also had read about but it dosent view in all browsers… (cough ie crap cough).
yea… and just anyone else that’s wondering what he’s talkin about
<style type="text/css">
<!--
ol {counter-reset: item;}
li {display: block;}
li:before {
content: counters(item, ".");
counter-increment: item;
padding: 5px; /*bumps the number away from the entry*/
}
-->
</style>
but again… the problem is that it doesn’t show in IE, and it actually doesn’t display in Safari either
unlike a lot of designers, i don’t get too frustrated with IE. but IE’s inability to display before: { content … } really really eats at me. it would be so useful. instead we’re stuck with background images and padding-left. gah.
well… designers dont’ get annoyed with it… it’s the developers :lol: I’m a halfie so I get frustrated that IE has always sucked in the past… they know it has… and they continue to let it suck…