The HTML attribute start
has been deprecated. How can you define the starting number with CSS? You have to use a counter, which as of this writing works only in Opera.
This is the CSS required to start with the number 10.
ol {counter-reset: start 9} li {display: block } li:before {content: counter(start) ". "; counter-increment: start}
This is how the ordered list is rendered in your browser (it should start with the number 10.)