我想使订购清单的编号与页面上的内容具有不同的颜色,我希望它以我给它的编号开头,例如“ 2开始”和“开始”在6点钟'。我尝试将颜色更改为红色,并通过使用计数器增量列表来正常工作,但这在我的内容中显示了数字“ 1”。
<div class="container">
<div class="row">
<div class="col-md-12">
<h1>Frequently Asked Questions</h1>
</div>
</div>
<div class="row">
<div class="col">
<ol class="faq-list">
<li class="list-title">Can I still spend my scanned banknotes</li>
<span class="content">Stability of isotopes is affected by the ratio of protons to neutrons, also by the presence of certain "magic numbers" of neutrons or protons that and filled quantum shells. These quantum shells correspond to a set of </span>
</ol>
</div>
<div class="col">
<ol class="faq-list" start="2">
<li class="list-title">Can I change my social security number?</li>
<span class="content">Stability of isotopes is affected by the ratio of protons to neutrons, also by the presence of certain </span>
</ol>
</div>
</div>
<div class="row">
<div class="col">
<ol class="faq-list" start="3">
<li class="list-title">Can i still spend my scanned banknotes</li>
<span class="content">Stability of isotopes is affected by the ratio of protons to neutrons, also by the presence of certain "magic numbers" of neutrons or protons that and filled quantum shells. These quantum shells correspond to a set of </span>
</ol>
</div>
<div class="col">
<ol class="faq-list" start="4">
<li class="list-title">Can I change my social security number?</li>
<span class="content">Stability of isotopes is affected by the ratio of protons to neutrons, also by the presence of certain </span>
</ol>
</div>
</div>
<div class="row">
<div class="col">
<ol class="faq-list" start="5">
<li class="list-title">Can I still spend my scanned banknotes</li>
<span class="content">Stability of isotopes is affected by the ratio of protons to neutrons, also by the presence of certain "magic numbers" of neutrons or protons that and filled quantum shells. These quantum shells correspond to a set of </span>
</ol>
</div>
<div class="col">
<ol class="faq-list" start="6">
<li class="list-title">Can I change my social security number?</li>
<span class="content">Stability of isotopes is affected by the ratio of protons to neutrons, also by the presence of certain </span>
</ol>
</div>
</div>
</div> <!---container-->
我希望输出为1、2、3,因为我在html中指出了应从哪里开始编号,但实际输出为1。