Skip to content

Instantly share code, notes, and snippets.

@SBoudrias
Created January 23, 2012 22:18
Show Gist options
  • Save SBoudrias/1665823 to your computer and use it in GitHub Desktop.
Save SBoudrias/1665823 to your computer and use it in GitHub Desktop.
Untitled
ol {
counter-reset: section; /* on instancie un compteur */
padding: 0;
/* style */
background-color: #120517
}
ol li:before {
display: block;
float: left;
content: counter(section); /* on utilise notre compteur */
counter-increment: section; /* on ajoute +1 au compteur */
width: 35px;
/* style */
color: #999;
background-color: #150034;
}
ol li {
list-style: none;
/* style */
color: #ccc;
}
<ol>
<li>a</li>
<li>b</li>
<li>c</li>
<li>d</li>
<li>e</li>
<li>f</li>
<li>g</li>
<li>h</li>
<li>i</li>
<li>j</li>
</ol>
{"view":"split","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment