Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a ordered list where I would like the initial number to be 6. I found that this was supported (now deprecated) in HTML 4.01. In this specification they say that you can specify the starting integer by using css. (instead of the start attribute)

How would you specify the starting number with css?

Thanks

share|improve this question

2 Answers

up vote 29 down vote accepted

There is no current CSS or XHTML specification that allows for what you want. (see update below)

If you need the functionality to start an ordered list (OL) at a specific point, you'll have to specify your doctype as HTML 4.01 Transitional; which is:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

With that doctype, it is valid to set a start attribute on an ordered list. Such as:

<ol start="6">

Alternatively, Array Studio has found a work-around that does what you want. It utilizes CSS's counter-reset and counter-increment functions. I highly recommend you take a look at that.


Update regarding HTML5

I wrote this answer in 2009, when HTML5 was just gaining traction. As Ms2ger says in his answer, the start attribute is no longer deprecated. You can use the answer I wrote above with HTML4.01 or HTML5, just not XHTML.

share|improve this answer
5  
is this still accurate? – antony.trupe Aug 22 '12 at 18:59

<ol start=""> is not deprecated anymore in HTML5, so I'd just keep using it, regardless of what HTML4.01 says.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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