অর্ডারযুক্ত তালিকা তৈরি করতে আমি নেস্টেড কাউন্টার এবং সুযোগ ব্যবহার করি:
ol {
counter-reset: item;
padding-left: 10px;
}
li {
display: block
}
li:before {
content: counters(item, ".") " ";
counter-increment: item
}
<ol>
<li>one</li>
<li>two</li>
<ol>
<li>two.one</li>
<li>two.two</li>
<li>two.three</li>
</ol>
<li>three</li>
<ol>
<li>three.one</li>
<li>three.two</li>
<ol>
<li>three.two.one</li>
<li>three.two.two</li>
</ol>
</ol>
<li>four</li>
</ol>
আমি নিম্নলিখিত ফলাফল আশা করি:
1. one
2. two
2.1. two.one
2.2. two.two
2.3. two.three
3. three
3.1 three.one
3.2 three.two
3.2.1 three.two.one
3.2.2 three.two.two
4. four
পরিবর্তে, এটি আমি দেখতে পাচ্ছি (ভুল নম্বর দেওয়া) :
1. one
2. two
2.1. two.one
2.2. two.two
2.3. two.three
2.4 three <!-- this is where it goes wrong, when going back to the parent -->
2.1 three.one
2.2 three.two
2.2.1 three.two.one
2.2.2 three.two.two
2.3 four
আমার কোন ক্লু নেই, কেউ কি দেখেন কোথায় ভুল হয়ে গেছে?
এখানে একটি জেএসফিডাল: http://jsfiddle.net/qGCUk/2/
1.
>1.1.
1.2.
1.3.
এবং এর সাথে অনুসরণ করবে ?