[解決済み] Html ordered list 1.1, 1.2 (Nested counters and scope) not working
2022-10-19 07:56:01
質問
ネストされたカウンタとスコープを使用して、順序付きリストを作成します。
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
全く分からないのですが、どこが悪いのか分かる方いらっしゃいますか?
以下はJSFiddleです。 http://jsfiddle.net/qGCUk/2/
どのように解決するのですか?
正規化CSSのチェックを外す。 http://jsfiddle.net/qGCUk/3/ この CSS リセットでは、リストのマージンやパディングがすべて 0 に設定されます。
アップデイト
http://jsfiddle.net/qGCUk/4/
- サブリストをメインの
<li>
ol {
counter-reset: item
}
li {
display: block
}
li:before {
content: counters(item, ".") " ";
counter-increment: item
}
<ol>
<li>one</li>
<li>two
<ol>
<li>two.one</li>
<li>two.two</li>
<li>two.three</li>
</ol>
</li>
<li>three
<ol>
<li>three.one</li>
<li>three.two
<ol>
<li>three.two.one</li>
<li>three.two.two</li>
</ol>
</li>
</ol>
</li>
<li>four</li>
</ol>
関連
-
[解決済み] CSS - カーソルを置いたときに塗りつぶしの色を変更する - SVG PATH
-
[解決済み] HTML 5: Is it <br>, <br/>, or <br />?
-
[解決済み] How do I style a <select> dropdown with only CSS?
-
[解決済み] CSSコンテンツによるHTMLエンティティの追加
-
[解決済み] 入力テキストボックスの値を取得する
-
[解決済み] 入力フィールドに :before や :after 疑似要素を使用できますか?
-
[解決済み] localStorage、sessionStorage、session、cookieの違いは何ですか?
-
[解決済み] HTML Input="file" Accept Attribute File Type (CSV)
-
[解決済み] HTMLのネストされたリストの正しい作成方法?
-
[解決済み】順序付きリストは、cssで1.1, 1.2, 1.3のように見える結果を生成することができますか?
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
[解決済み] <html xmlns="http://www.w3.org/1999/xhtml">」は何をするものですか?
-
[解決済み] CSSでcellpaddingとcellspacingを設定する?
-
[解決済み] HTML 5: Is it <br>, <br/>, or <br />?
-
[解決済み] ローカルストレージとCookieの比較
-
[解決済み] ボディの高さをブラウザの高さの100%にする
-
[解決済み] div内の要素を縦に並べるにはどうしたらいいですか?
-
[解決済み] Bootstrap3による垂直方向の整列
-
[解決済み] HTMLのid属性とname属性の違い
-
[解決済み] ラジオボタンをデフォルトで選択するには?[重複しています]
-
[解決済み] 入力フィールドに :before や :after 疑似要素を使用できますか?