こんにちは、あなたは私が
CSS
body{
counter-reset:section;
}
div{
margin-top:10px;margin-left:10px;
}
.numercal {
counter-reset:subsection;
font-weight:bold;
}
.numercal:before{
counter-increment:section;
content:"Section " counter(section) ". ";
font-style:italic;
color:red;
}
.numercal-no:before{
counter-increment:subsection;
content:counter(section) "." counter(subsection) " ";
}
HTML
<div>
<p class="numercal">Demo Text here</p>
<p class="numercal-no">Sub Text here</p>
<p class="numercal-no">Sub Text here</p>
<p class="numercal-no">Sub Text here</p>
<p class="numercal-no">Sub Text here</p>
<p class="numercal-no">Sub Text here</p>
<p class="numercal-no">Sub Text here</p>
</div>
<div>
<p class="numercal">Demo Text here</p>
<p class="numercal-no">Sub Text here</p>
<p class="numercal-no">Sub Text here</p>
<p class="numercal-no">Sub Text here</p>
<p class="numercal-no">Sub Text here</p>
<p class="numercal-no">Sub Text here</p>
<p class="numercal-no">Sub Text here</p>
</div>
<div>
<p class="numercal">Demo Text here</p>
<p class="numercal-no">Sub Text here</p>
<p class="numercal-no">Sub Text here</p>
<p class="numercal-no">Sub Text here</p>
<p class="numercal-no">Sub Text here</p>
<p class="numercal-no">Sub Text here</p>
<p class="numercal-no">Sub Text here</p>
</div>
ライブDあなたに例を挙げてそれを行うことができますこれについては今よりエモclick herehttp://jsfiddle.net/rohitazad/Xwm3C/1/
は、このサイトhttp://reference.sitepoint.com/css/counter-increment
http://www.w3.org/wiki/CSS/Properties/counter-increment
行くことを行くあなたは少し以前の投稿をあなたの元の質問を見てください。私はそれに答えた。 – ScottS
@ScottS:あなたは両方の質問の背後にある同じユーザーだと思いますか?彼らは非常に類似している、はい。それはちょうど偶然かもしれません。DavidThomas @ –
- それは同じユーザ数(user1246987):-) – ScottS