現在、いくつかの順序付きリストhtmlタグをネストし、それぞれを別々のタイプとして扱おうとしています。しかし、リストの要素はすべてタイプ1のままであり、その理由を伝えることはできません。異なるタイプのネストされた順序付きリスト
これは私のコードです:
<ol type="1">
<li>Sales Associate 2003- Present</li>
<ol type="2">
<li>Target West, Wichita, KS</li>
<ol type="3">
<li>Help customers with purchases</li>
<li>Handle customer questions and complaints, working to ensure complete customer satisfaction</li>
<li>Run cash register</li>
<li>Monitor security system</li>
</ol>
</ol>
<li>Grounds Keeper 1998-2003</li>
<ol type="2">
<li>Riverside Golf Course, Wichita, KS</li>
<ol type="3">
<li>Helped with the general outdoor maintenance of the apartment complex</li>
<li>Worked as a member of a team</li>
<li>Scheduled maintenance repairs with tenants as needed</li>
</ol>
</ol>
</ol>
。別のリスト内でリストを開始することはできません。リスト内にリストを入れる必要があります。そして、ここでtype属性が何を期待していますか?開始属性を意味しましたか? – j08691
OLの子としてOLを持つことはできません。これはHTMLが無効です。それをリスト項目に入れる必要があります。 – CBroe