aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css/ident/index.html
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/css/ident/index.html
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/css/ident/index.html')
-rw-r--r--files/ja/web/css/ident/index.html79
1 files changed, 79 insertions, 0 deletions
diff --git a/files/ja/web/css/ident/index.html b/files/ja/web/css/ident/index.html
new file mode 100644
index 0000000000..805dbe3e25
--- /dev/null
+++ b/files/ja/web/css/ident/index.html
@@ -0,0 +1,79 @@
+---
+title: ident
+slug: Web/CSS/ident
+translation_of: Web/CSS/ident
+---
+<p>{{CSSRef}}{{Draft}}</p>
+
+<p><span class="seoSummary"><strong><code>&lt;ident&gt;</code></strong> <a href="/en-US/docs/Web/CSS">CSS</a> <a href="/en-US/docs/Web/CSS/CSS_Types">データ型</a> は、 {{glossary("identifier")}} として使用される任意の文字列を意味します。</span></p>
+
+<h2 id="構文">構文</h2>
+
+<p><code>&lt;custom-ident&gt;</code> の構文は CSS の識別子 (プロパティ名など)に似ていますが、 <a class="external" href="http://en.wikipedia.org/wiki/Case_sensitivity">大文字と小文字の区別</a> がある点が違います。 これは次の文字から成る文字の並びです:</p>
+
+<ul>
+ <li>アルファベット (<code>A</code> - <code>Z</code> と <code>a</code> - <code>z</code>)</li>
+ <li>数字 (<code>0</code> - <code>9</code>)</li>
+ <li>ハイフン (<code>-</code>)</li>
+ <li>アンダースコア (<code>_</code>)</li>
+ <li>エスケープ文字 (バックスラッシュ <code>\</code> に続く)</li>
+ <li><a class="external" href="http://en.wikipedia.org/wiki/Unicode">Unicode</a> 文字 (バックスラッシュ <code>\</code> と、それに続く 1-6 個の16進数を形式をとる、Unicode コードポイント)</li>
+</ul>
+
+<p><a class="external" href="http://en.wikipedia.org/wiki/Case_sensitivity">大文字と小文字の区別</a> があるため <code>id1</code>、 <code>Id1</code>、 <code>iD1</code> そして <code>ID1</code> は全て異なる識別子である点に注意してください。しかし、文字をエスケープする方法はいくつか存在するため、 <code>toto\?</code> と <code>toto\3F</code> は同じ識別子です。</p>
+
+<h2 id="例">例</h2>
+
+<h3 id="有効な識別子">有効な識別子</h3>
+
+<pre class="brush: none; no-line-numbers example-good notranslate">nono79 アルファベットと数字の組み合わせ
+ground-level アルファベットとダッシュの組み合わせ
+-test ダッシュとそれに続く英数字
+--toto identifier の様なカスタムプロパティ
+_internal アンダースコアとそれに続く英数字
+\22 toto Unicode 文字とそれに続く一連の英数字
+bili\.bob 正しくエスケープされたピリオド
+</pre>
+
+<h3 id="無効な識別子">無効な識別子</h3>
+
+<pre class="brush: none; no-line-numbers example-bad notranslate">34rem 数字で始まってはいけません
+-12rad ダッシュで始まって数字が続いてはいけません
+bili.bob アルファベット、 _、 - のみをエスケープする必要はありません
+'bilibob' これは {{CSSxRef("&lt;string&gt;")}} になります
+"bilibob" これは {{CSSxRef("&lt;string&gt;")}} になります
+</pre>
+
+<h2 id="仕様">仕様</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">仕様</th>
+ <th scope="col">ステータス</th>
+ <th scope="col">コメント</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName('CSS4 Values', '#css-identifier', '<code>&lt;ident&gt;</code>')}}</td>
+ <td>{{Spec2('CSS4 Values')}}</td>
+ <td></td>
+ </tr>
+ <tr>
+ <td>{{SpecName('CSS3 Values', '#css-identifier', '<code>&lt;ident&gt;</code>')}}</td>
+ <td>{{Spec2('CSS3 Values')}}</td>
+ <td></td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="ブラウザーの互換性">ブラウザーの互換性</h2>
+
+<p><em>このデータ型は、他のCSS構文の定義を単純化するために使用される便利な型なので実際の型ではありません。</em></p>
+
+<h2 id="関連情報">関連情報</h2>
+
+<ul>
+ <li>{{CSSxRef("&lt;custom-ident&gt;")}} – CSS全体のキーワードを除く <code>&lt;ident&gt;</code> 値の制限されたサブセット、 {{CSSxRef("--*", "custom properties")}} 及びその他のプロパティ値。</li>
+</ul>