diff options
-rw-r--r-- | files/ja/web/css/_colon_optional/index.md | 149 |
1 files changed, 62 insertions, 87 deletions
diff --git a/files/ja/web/css/_colon_optional/index.md b/files/ja/web/css/_colon_optional/index.md index 038aab28f9..65bd6b64b4 100644 --- a/files/ja/web/css/_colon_optional/index.md +++ b/files/ja/web/css/_colon_optional/index.md @@ -1,55 +1,59 @@ --- title: ':optional' -slug: 'Web/CSS/:optional' +slug: Web/CSS/:optional tags: - CSS - - Layout - - Pseudo-class - - Reference - - Selector - - Web -translation_of: 'Web/CSS/:optional' + - レイアウト + - 擬似クラス + - リファレンス + - セレクター + - ウェブ +browser-compat: css.selectors.optional +translation_of: Web/CSS/:optional --- -<div>{{ CSSRef }}</div> +{{ CSSRef }} -<p><strong><code>:optional</code></strong> は <a href="/ja/docs/Web/CSS">CSS</a> の<a href="/ja/docs/Web/CSS/Pseudo-classes">擬似クラス</a>で、 {{ htmlattrxref("required", "input") }} 属性が設定されていない {{HTMLElement("input")}}, {{HTMLElement("select")}}, {{HTMLElement("textarea")}} 要素を表します。</p> +**`:optional`** は [CSS](/ja/docs/Web/CSS) の[擬似クラス](/ja/docs/Web/CSS/Pseudo-classes)で、 {{ htmlattrxref("required", "input") }} 属性が設定されていない {{HTMLElement("input")}}, {{HTMLElement("select")}}, {{HTMLElement("textarea")}} 要素を表します。 -<pre class="brush: css no-line-numbers notranslate">/* 任意の <input> をすべて選択 */ +```css +/* 任意の <input> をすべて選択 */ input:optional { border: 1px dashed black; -}</pre> +} +``` -<p>この擬似クラスは。フォームを送信するにあたって必須ではない入力欄にスタイルを適用するのに便利です。</p> +この擬似クラスは。フォームを送信するにあたって必須ではない入力欄にスタイルを適用するのに便利です。 -<div class="note"> -<p><strong>注:</strong> {{cssxref(":required")}} 擬似クラスは<em>必須</em>のフォーム欄を選択します。</p> -</div> +> **Note:** {{cssxref(":required")}} 擬似クラスは<em>必須</em>のフォーム欄を選択します。 -<h2 id="Syntax" name="Syntax">構文</h2> +## 構文 {{csssyntax}} -<h2 id="Examples" name="Examples">例</h2> +## 例 -<h3 id="The_optional_field_has_a_purple_border" name="The_optional_field_has_a_purple_border">オプションのフィールドの枠を紫にする</h3> +### 省略可能なフィールドの枠を紫にする -<h4 id="HTML">HTML</h4> +#### HTML -<pre class="brush: html notranslate"><form> - <div class="field"> - <label for="url_input">Enter a URL:</label> - <input type="url" id="url_input"> - </div> +```html +<form> + <div class="field"> + <label for="url_input">Enter a URL:</label> + <input type="url" id="url_input"> + </div> - <div class="field"> - <label for="email_input">Enter an email address:</label> - <input type="email" id="email_input" required> - </div> -</form></pre> + <div class="field"> + <label for="email_input">Enter an email address:</label> + <input type="email" id="email_input" required> + </div> +</form> +``` -<h4 id="CSS">CSS</h4> +#### CSS -<pre class="brush: css notranslate">label { +```css +label { display: block; margin: 1px; padding: 1px; @@ -64,59 +68,30 @@ input:optional { border-color: rebeccapurple; border-width: 3px; } -</pre> - -<h4 id="Result" name="Result">結果</h4> - -<p>{{EmbedLiveSample('Examples', 600, 120)}}</p> - -<h2 id="Accessibility_concerns" name="Accessibility_concerns">アクセシビリティの考慮</h2> - -<p><a href="/ja/docs/Web/HTML/Element/form">フォーム</a>に必須ではない {{htmlelement("input")}} が含まれている場合、必須の入力欄には {{ htmlattrxref("required", "input") }} 属性を適用してください。これによって、読み上げソフトなどの支援技術を使用している人が、フォームを送信するためにどの入力欄が有効なコンテンツを必要とするかを理解することができます。</p> - -<p>必須の入力欄を視覚的に示すのに、色だけに依存しないようにしてください。通常、説明する文字列やアイコンが使用されます。</p> - -<ul> - <li><a href="/ja/docs/Web/Accessibility/Understanding_WCAG/Understandable#Guideline_3.3_%E2%80%94_Input_Assistance_Help_users_avoid_and_correct_mistakes">MDN WCAG を理解する ― ガイドライン 3.3 の解説</a></li> - <li><a href="https://www.w3.org/TR/UNDERSTANDING-WCAG20/minimize-error-cues.html">Understanding Success Criterion 3.3.2 | W3C Understanding WCAG 2.0</a></li> -</ul> - -<h2 id="Specifications" name="Specifications">仕様書</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('HTML WHATWG', '#selector-optional', ':optional') }}</td> - <td>{{ Spec2('HTML WHATWG') }}</td> - <td>変更なし。</td> - </tr> - <tr> - <td>{{ SpecName('HTML5 W3C', '#selector-optional', ':optional') }}</td> - <td>{{ Spec2('HTML5 W3C') }}</td> - <td>HTML の意味論と制約検証を定義。</td> - </tr> - <tr> - <td>{{ SpecName('CSS4 Selectors', '#opt-pseudos', ':optional') }}</td> - <td>{{ Spec2('CSS4 Selectors') }}</td> - <td>変更なし。</td> - </tr> - </tbody> -</table> - -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> - -<p>{{Compat("css.selectors.optional")}}</p> - -<h2 id="See_also" name="See_also">関連項目</h2> - -<ul> - <li>他の検証関連の擬似クラス: {{ cssxref(":required") }}, {{ cssxref(":invalid") }}, {{ cssxref(":valid") }}</li> - <li><a href="/ja/docs/Learn/HTML/Forms/Form_validation">フォームデータの検証</a></li> -</ul> +``` + +#### 結果 + +{{EmbedLiveSample('Examples', 600, 120)}} + +## アクセシビリティの考慮 + +[フォーム](/ja/docs/Web/HTML/Element/form)に必須ではない {{htmlelement("input")}} が含まれている場合、必須の入力欄には {{ htmlattrxref("required", "input") }} 属性を適用してください。これによって、読み上げソフトなどの支援技術を使用している人が、フォームを送信するためにどの入力欄が有効なコンテンツを必要とするかを理解することができます。 + +必須の入力欄を視覚的に示すのに、色だけに依存しないようにしてください。通常、説明する文字列やアイコンが使用されます。 + +- [MDN WCAG を理解する ― ガイドライン 3.3 の解説](/ja/docs/Web/Accessibility/Understanding_WCAG/Understandable#guideline_3.3_%e2%80%94_input_assistance_help_users_avoid_and_correct_mistakes) +- [Understanding Success Criterion 3.3.2 | W3C Understanding WCAG 2.0](https://www.w3.org/TR/UNDERSTANDING-WCAG20/minimize-error-cues.html) + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- 他の検証関連の擬似クラス: {{ cssxref(":required") }}, {{ cssxref(":invalid") }}, {{ cssxref(":valid") }} +- [フォームデータの検証](/ja/docs/Learn/Forms/Form_validation) |