1. ホーム
  2. html

[解決済み] What are the allowed tags inside a <li>?

2022-06-02 08:47:45

Question

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

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

How to solved?

TL;DR : an <li> can contain any element that is valid in <body> .

In the HTML 4.01 spec for lists you’ll find the relevant extract of the DTD:

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

これは <li> を含むことができます。 フローコンテンツ を含むことができ、これはすべての ブロック インライン 要素で構成されます。

の HTML5 仕様は <li> は、任意の フローコンテンツ .