Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been searching for the list of tags that are available inside a <li></li> but couldn't find any reference.

Is it possible that any standards compliant HTML 4 + block is allowed in them ?

share|improve this question

4 Answers

up vote 33 down vote accepted

Long answer short: li can contain any valid HTML element, that can appear in the body.

The HTML 4.01 Reference is usually quite easy to find with Google. It's the first hit when searching for "html 4".

In the section about lists you'll find the extract of the DTD:

<!ELEMENT LI - O (%flow;)* -- list item -->

That show's li elements may contain "flow" elements. "Flow" is linked and you can click through and find that "flow" is the collection of all "block" and "inline" elements, which basicly includes everything.

share|improve this answer
Nice, thanks a lot. – petsagouris Feb 11 '11 at 10:44
1  
Nice and helpful, especially since bing thinks it knows what I want better than I do: bing.com/… "Including results for can i have black child." – Supuhstar Feb 25 at 16:37
explanation is really good @Supuhstar that is why Bing is B(e)ing so far behind Google – Jeffz Jun 15 at 19:25

Yup pretty much. You can have lists inside lists (either inside the <li> or just loose inside the <ol>/<ul>), block elements and inline elements. To me it wouldn't make much sense to put a <table> inside an <li>, but even that's still valid.

share|improve this answer

It's a block level element so pretty much anything goes. Trouble only comes when you're putting block level elements inside inline ones.

share|improve this answer
3  
Not entirely correct with the 'block level = anything goes' statement - for example, p tags are block level, yet you can only place inline elements in them. – Yi Jiang Feb 11 '11 at 10:42
Ah, yes, of course. I stand corrected. Thank you! – Scott Brown Feb 11 '11 at 10:43

You can use the W3C's Markup Validation Service to test against your cases to know whether or not your markup is valid.

This validator checks the markup validity of Web documents in HTML, XHTML, SMIL, MathML, etc.

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.