aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-04-26 01:59:22 +0900
committerGitHub <noreply@github.com>2021-04-26 01:59:22 +0900
commit7605dba8f60814ea22423a818028e86d598c4a85 (patch)
tree14ccd11a70b4f94c02f6c731d671a039f0ed3d11 /files/ja/web/css
parentfd47fdad29f03657acc4826e2a909fca497e6adc (diff)
downloadtranslated-content-7605dba8f60814ea22423a818028e86d598c4a85.tar.gz
translated-content-7605dba8f60814ea22423a818028e86d598c4a85.tar.bz2
translated-content-7605dba8f60814ea22423a818028e86d598c4a85.zip
Web/CSS/CSS_Lists_and_Counters/Using_CSS_counters を更新 (#495)
2021/03/31 時点の英語版に同期
Diffstat (limited to 'files/ja/web/css')
-rw-r--r--files/ja/web/css/css_lists_and_counters/using_css_counters/index.html65
1 files changed, 47 insertions, 18 deletions
diff --git a/files/ja/web/css/css_lists_and_counters/using_css_counters/index.html b/files/ja/web/css/css_lists_and_counters/using_css_counters/index.html
index aae2a7cc94..dcbbae259b 100644
--- a/files/ja/web/css/css_lists_and_counters/using_css_counters/index.html
+++ b/files/ja/web/css/css_lists_and_counters/using_css_counters/index.html
@@ -15,55 +15,84 @@ translation_of: Web/CSS/CSS_Lists_and_Counters/Using_CSS_counters
<p><strong>CSS カウンター</strong>では、文書内の位置に基づいてコンテンツの表示方法を調整することができます。例えば、ウェブページ内の見出し番号を自動的に振るのに使ったりします。カウンターは本質的に、 CSS が管理する変数であり、 CSS の規則によって増加し、何回使用されたかを追跡するものです。</p>
-<h2 id="Using_counters" name="Using_counters">カウンターの使用</h2>
+<h2 id="Using_counters">カウンターの使用</h2>
-<h3 id="Manipulating_a_counters_value" name="Manipulating_a_counter's_value">カウンターの値の操作</h3>
+<h3 id="Manipulating_a_counters_value">カウンターの値の操作</h3>
<p>カウンターを使用すると、最初に必ず {{cssxref("counter-reset")}} プロパティで値を初期化する必要があります (既定値は <code>0</code>)。このプロパティで値を特定の数に変更することができます。いったん初期化されると、カウンターの値は {{cssxref("counter-increment")}} で増加させたり減少させたりすることができます。カウンターの名前を "none", "inherit", "initial" にすることはできません。そうすると宣言が無視されます。</p>
-<h3 id="Displaying_a_counter" name="Displaying_a_counter">カウンターの表示</h3>
+<h3 id="Displaying_a_counter">カウンターの表示</h3>
-<p>カウンターの値は、 {{cssxref("content")}} の中で {{cssxref("counter", "counter()")}} または {{cssxref("counters", "counters()")}} 関数を使用して表示することができます。</p>
+<p>カウンターの値は、 {{cssxref("content")}} の中で {{cssxref("counter()", "counter()")}} または {{cssxref("counters()", "counters()")}} 関数を使用して表示することができます。</p>
<p><code>counter()</code> には 'counter(<var>name</var>)' または 'counter(<var>name</var>, <var>style</var>)' の2つの形があります。生成される文字列は、その擬似要素のスコープにある指定された name の最も内側にあるカウンターの値です。これは指定されたスタイルで整形されます (既定値は <code>decimal</code> です)。</p>
<p><code>counters()</code> 関数にも、 'counters(<var>name</var>, <var>string</var>)' または 'counters(<var>name</var>, <var>string</var>, <var>style</var>)' の2つの形があります。生成される文字列は、その擬似要素のスコープにある指定された name のすべてのカウンターの値が、外側から内側に向けて、指定された string で区切られたものになります。カウンターは指定されたスタイルで表示されます (既定値は <code>decimal</code> です)。</p>
-<h3 id="Basic_example" name="Basic_example">基本的な例</h3>
+<h3 id="Basic_example">基本的な例</h3>
<p>この例ではそれぞれの見出しの先頭に "Section [カウンターの値]:" を追加します。</p>
<h4 id="CSS">CSS</h4>
-<pre class="brush: css notranslate">body {
- counter-reset: section; /* 'section' という名前のカウンターを設定し、 0 で初期化する。 */
+<pre class="brush: css">body {
+ counter-reset: section; /* 'section' という名前のカウンターを設定し、 0 で初期化する。 */
}
h3::before {
- counter-increment: section; /* section カウンターの値に1を加算 */
- content: counter(section); /* section カウンターの値を表示 */
+ counter-increment: section; /* section カウンターの値に1を加算 */
+ content: "Section " counter(section) ": "; /* 'Section ' という語、 section カウンターの値、
+ コロンをそれぞれの h3 の内容の前にを表示 */
}
</pre>
<h4 id="HTML">HTML</h4>
-<pre class="brush: html notranslate">&lt;h3&gt;Introduction&lt;/h3&gt;
+<pre class="brush: html">&lt;h3&gt;Introduction&lt;/h3&gt;
&lt;h3&gt;Body&lt;/h3&gt;
&lt;h3&gt;Conclusion&lt;/h3&gt;</pre>
-<h4 id="Result" name="Result">結果</h4>
+<h4 id="Result">結果</h4>
<p>{{EmbedLiveSample("Basic_example", "100%", 150)}}</p>
-<h2 id="Nesting_counters" name="Nesting_counters">カウンターの入れ子</h2>
+<h3 id="A_more_sophisticated_example">より洗練された例</h3>
+
+<p>カウンターは増加するたびに表示する必要はありません。この例では、すべてのリンクを数えますが、カウンターはリンクにテキストがない場合の便利な代替手段として表示されます。</p>
+
+<h4 id="CSS2">CSS</h4>
+
+<pre class="brush: css">:root {
+ counter-reset: link;
+}
+
+a[href] {
+ counter-increment: link;
+}
+
+a[href]:empty::after {
+ content: "[" counter(link) "]";
+}</pre>
+
+<h4 id="HTML2">HTML</h4>
+
+<pre class="brush: html">&lt;p&gt;See &lt;a href="https://www.mozilla.org/"&gt;&lt;/a&gt;&lt;/p&gt;
+&lt;p&gt;Do not forget to &lt;a href="contact-me.html"&gt;leave a message&lt;/a&gt;!&lt;/p&gt;
+&lt;p&gt;See also &lt;a href="https://developer.mozilla.org/"&gt;&lt;/a&gt;&lt;/p&gt;</pre>
+
+<h4 id="Result2">結果</h4>
+
+<p>{{EmbedLiveSample("A_more_sophisticated_example", "100%", 150)}}</p>
+
+<h2 id="Nesting_counters">カウンターの入れ子</h2>
<p>CSS カウンターはアウトラインのリストを作成するのには特に便利で、子要素でカウンターの新しいインスタンスが自動的に生成されます。 {{cssxref("counters()")}} 関数を使用して、入れ子になったカウンターの階層間に区切り文字列を挿入することができます。</p>
-<h3 id="Example_of_a_nested_counter" name="Example_of_a_nested_counter">入れ子になったカウンターの例</h3>
+<h3 id="Example_of_a_nested_counter">入れ子になったカウンターの例</h3>
<h4 id="CSS_2">CSS</h4>
-<pre class="brush: css notranslate">ol {
+<pre class="brush: css">ol {
counter-reset: section; /* それぞれの ol 要素に、 section
カウンターの新しいインスタンスを
生成 */
@@ -81,7 +110,7 @@ li::before {
<h4 id="HTML_2">HTML</h4>
-<pre class="brush: html notranslate">&lt;ol&gt;
+<pre class="brush: html">&lt;ol&gt;
&lt;li&gt;item&lt;/li&gt; &lt;!-- 1 --&gt;
&lt;li&gt;item &lt;!-- 2 --&gt;
&lt;ol&gt;
@@ -109,11 +138,11 @@ li::before {
&lt;li&gt;item&lt;/li&gt; &lt;!-- 2 --&gt;
&lt;/ol&gt;</pre>
-<h4 id="Result_2" name="Result_2">結果</h4>
+<h4 id="Result_2">結果</h4>
<p>{{EmbedLiveSample("Example_of_a_nested_counter", "100%", 350)}}</p>
-<h2 id="Specifications" name="Specifications">仕様書</h2>
+<h2 id="Specifications">仕様書</h2>
<table class="standard-table">
<thead>
@@ -137,7 +166,7 @@ li::before {
</tbody>
</table>
-<h2 id="See_also" name="See_also">関連情報</h2>
+<h2 id="See_also">関連情報</h2>
<ul>
<li>{{cssxref("counter-reset")}}</li>