I think the answer to this question is no... but does anyone know of a an HTML/CSS way to create an ordered list without a period after the numbers? Or, alternatively, to specify the separator character?

Ideally I don't want to do list-style-image with a different class for each number, but that's all I've been able to think of so far... That seems terribly unsemantic.

IE:

Default Style:
1. ______
2. ______
3. ______

Desired Style:
1  ______
2  ______
3  ______

Alternate Style:
1) ______
2) ______
3) ______
link|improve this question

feedback

5 Answers

up vote 10 down vote accepted

This is perfectly possible to do with just CSS (2.1):

ol.custom {
  list-style-type: none;
  margin-left: 0;
}

ol.custom > li {
  counter-increment: customlistcounter;
}

ol.custom > li:before {
  content: counter(customlistcounter) " ";
  font-weight: bold;
  float: left;
  width: 3em;
}

ol.custom:first-child {
  counter-reset: customlistcounter;
}

Keep in mind that this solution relies on the :before pseudo-selector, so some older browsers -- IE6 and IE7 in particular -- won't render the generated numbers. For those browsers, you'll want to add an extra CSS rule that targets just them to use the normal list-style:

ol.custom {
  *list-style-type: decimal; /* targets IE6 and IE7 only */
}
link|improve this answer
1  
For what it's worth this didn't work until I moved the counter-increment to the li itself. Don't know why... Otherwise this is great, thanks! – Andrew May 10 '11 at 5:49
feedback

Here is the solution

Number nested ordered lists in HTML

All you have to to is change a little bit here

ol li:before {
                content: counter(level1) " "; /*Instead of ". " */
                counter-increment: level1;
            }

^^

link|improve this answer
+1, This is the only way with pure CSS, but I don't believe it's well supported (yet) unfortunately. EDIT: I stand corrected, according to that link, it works in all current browsers. – Matthew Scharley May 10 '11 at 4:43
Not working: jsfiddle.net/6Rqsu/1 – ariel May 10 '11 at 4:47
1  
Ok, it works now.. had to add ol { counter-reset: level1 } – ariel May 10 '11 at 4:53
feedback

You can add the numbers later using jQuery:

$("ul").each(function() {
   $(this).find("li").each(function(index) {
      $(this)
        .css("list-style-type", "none")
        .prepend("<div class='listnumber'>" + (index + 1) + "</div>");
   })
})

Try the sample here.

More info on jQuery here.

link|improve this answer
feedback

For what it's worth answering such an old thread (sorry about that) :

I just found a workaround for cases where you want to simply remove the dot. Not the best solution ever, but it's done with only CSS and works in every browser. The downside is that you need the textnode in the LI to be wrapped into another tag (<span> or something). In my own case, the <ol> was used as a list of links, so I could use my <a> tags !

The CSS I used :

ol li a {
    float: right;
    margin: 8px 0px 0px -13px; /* collapses <a> and dots */
    padding-left: 10px; /* gives back some space between digit and text beginning */
    position: relative; z-index: 10; /* make the <a> appear ABOVE the dots */
    background-color: #333333; /* same background color as my ol ; the dots are now invisible ! */
}
link|improve this answer
Interesting approach, thanks. No problem answering an old thread, sometimes you're adding very useful info. – Andrew Mar 16 at 19:16
feedback

Seems that you are screwed up with the periods :) I think the only way is constructing the list by yourself with <ul>

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.