Skip to content

Instantly share code, notes, and snippets.

@jirutka
Last active April 26, 2023 14:03
Show Gist options
  • Star 46 You must be signed in to star a gist
  • Fork 11 You must be signed in to fork a gist
  • Save jirutka/32049196ab75547b7f47 to your computer and use it in GitHub Desktop.
Save jirutka/32049196ab75547b7f47 to your computer and use it in GitHub Desktop.
Nested numbered list with correct indentation in CSS. Live example at http://jsfiddle.net/a84enL8k/.
/**
* Nested numbered list with correct indentation.
*
* Tested on Firefox 32, Chromium 37, IE 9 and Android Browser. Doesn't work on IE 7 and previous.
* Source: https://gist.github.com/jirutka/32049196ab75547b7f47
*/
ol {
list-style-type: none;
counter-reset: item;
margin: 0;
padding: 0;
}
ol > li {
display: table;
counter-increment: item;
margin-bottom: 0.6em;
}
ol > li:before {
content: counters(item, ".") ". ";
display: table-cell;
padding-right: 0.6em;
}
li ol > li {
margin: 0;
}
li ol > li:before {
content: counters(item, ".") " ";
}
/**
* Nested numbered list with correct indentation.
*
* Tested on Firefox 32, Chromium 37, IE 9 and Android Browser. Doesn't work on IE 7 and previous.
* Source: https://gist.github.com/jirutka/32049196ab75547b7f47
*/
ol {
list-style-type: none;
counter-reset: item;
margin: 0;
padding: 0;
}
ol > li {
display: table;
counter-increment: item;
margin-bottom: 0.6em;
&:before {
content: counters(item, ".") ". ";
display: table-cell;
padding-right: 0.6em;
}
}
li ol > li {
margin: 0;
&:before {
content: counters(item, ".") " ";
}
}
@pbb72
Copy link

pbb72 commented Oct 28, 2014

This will also number all list items on unordered lists, which is not what you want. I made a fork fixes that, but I have no idea how to send a Pull Request (new to GitHub).

@jirutka
Copy link
Author

jirutka commented Nov 1, 2014

@pbb72 You’re right, I’ve updated the style. Thanks!

@fadonascimento
Copy link

fadonascimento commented Dec 28, 2018

@pbb72 Great job, but How I need to do to consider the "start" attribute?
Ex:

<ol start="50">
  <li>Coffee</li>
  <ol>
     <li>Tea</li>
  </ol>
  <li>Tea</li>
  <li>Milk</li>
</ol>

@msquarediam
Copy link

Hi @fadonascimento. Wondering the same too. <ol start="#"> isn't working. Your thoughts?

@anthiago
Copy link

anthiago commented May 11, 2019

With this code, when I use ol start="somevalue" it doesn't apply (It starts from "1" and not from the value that I entered). Maybe I need to add another line? Thank you and great job.

@Zim-creator
Copy link

With this code, when I use ol start="somevalue" it doesn't apply (It starts from "1" and not from the value that I entered). Maybe I need to add another line? Thank you and great job.

Try to change start="somevalue" to style="counter-reset: item somevalue;"

<ol style="counter-reset: item 50;">
  <li>Coffee</li>
  <li>Tea
    <ol>
      <li>Black tea</li>
      <li>Green tea</li>
    </ol>
  </li>
  <li>Milk
  	<ol>
      <li>Black tea</li>
      <li>Green tea</li>
    </ol>
  </li>
  <li>Milk</li>
  <li>Milk</li>
</ol>

<style>
ol {
  list-style-type: none;
  counter-reset: item;
  margin: 0;
  padding: 0;
}

ol > li {
  display: table;
  counter-increment: item;
  margin-bottom: 0.6em;
}

ol > li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 0.6em;    
}

li ol > li {
  margin: 0;
}

li ol > li:before {
  content: counters(item, ".") " ";
}
</style>

@ix4
Copy link

ix4 commented Feb 18, 2020

Thank you so much. This is a lifesaver! I've been trying to figure this all week.
Is there any way to use other style types (or even mixed perhaps)?

@AleksejsGrocevs
Copy link

<span>M</span> <span>M</span> in any LI yields to "MM" instead of "M M" due to display: table. Any idea how to properly render default whitespace (since ASCII 160 works fine) between consecutive tags?

@rajvijen
Copy link

Thank you so much. This is a lifesaver! I've been trying to figure this all week.
Is there any way to use other style types (or even mixed perhaps)?

@ix4 These are some list style types -

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment