css

入れ子になっている
    要素のリストの番号を1.1や1.2にする

2023/08/16

1.2.3.・・・

ol.numberPoint {
counter-reset: count 0;
}

ol.numberPoint li{
font-size: 1.6rem;
line-height: 1.6em;
margin-bottom: 10px;
}
ol.numberPoint li:before {
content: counters(count, ‘-‘) “. “;
counter-increment: count;
}

(1)(2)(3)

ol.cntPoint  {
  counter-reset: cnt 0;
}
ol.cntPoint li {
  font-size: 1.6rem;
  line-height: 1.6em;
  margin-bottom: 10px;
}
ol.cntPoint li::before {
content: “(” counters(cnt, ‘-‘) “) “;
  counter-increment: cnt;
}
1.あああ
 (1)aaa
 (2)bbb
 (3)ccc
2.いいい