diff options
Diffstat (limited to 'files/ja/web/css/text-emphasis-style/index.md')
-rw-r--r-- | files/ja/web/css/text-emphasis-style/index.md | 107 |
1 files changed, 107 insertions, 0 deletions
diff --git a/files/ja/web/css/text-emphasis-style/index.md b/files/ja/web/css/text-emphasis-style/index.md new file mode 100644 index 0000000000..6c2e0bd827 --- /dev/null +++ b/files/ja/web/css/text-emphasis-style/index.md @@ -0,0 +1,107 @@ +--- +title: text-emphasis-style +slug: Web/CSS/text-emphasis-style +tags: + - CSS + - CSS テキスト装飾 + - CSS プロパティ + - Reference + - text-emphasis +translation_of: Web/CSS/text-emphasis-style +--- +<div>{{CSSRef}}</div> + +<p><a href="/ja/docs/Web/CSS">CSS</a> の <strong><code>text-emphasis-style</code></strong> プロパティは、圏点の表示を設定します。設定や解除に一括指定の {{cssxref("text-emphasis")}} を使用することもできます。</p> + +<pre class="brush:css no-line-numbers">/* 初期値 */ +text-emphasis-style: none; /* 圏点なし */ + +/* <string> 値 */ +text-emphasis-style: 'x'; +text-emphasis-style: '点'; +text-emphasis-style: '\25B2'; +text-emphasis-style: '*'; +text-emphasis-style: 'foo'; /* 使用するべきではない。計算されるか 'f' のみが表示される */ + +/* キーワード値 */ +text-emphasis-style: filled; +text-emphasis-style: open; +text-emphasis-style: dot; +text-emphasis-style: circle; +text-emphasis-style: double-circle; +text-emphasis-style: triangle; +text-emphasis-style: filled sesame; +text-emphasis-style: open sesame; + +/* グローバル値 */ +text-emphasis-style: inherit; +text-emphasis-style: initial; +text-emphasis-style: unset; +</pre> + +<p>{{cssinfo}}</p> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<h3 id="Values" name="Values">値</h3> + +<dl> + <dt><code>none</code></dt> + <dd>圏点なし。</dd> + <dt><code>filled</code></dt> + <dd>図形は単色で塗りつぶされます。 <code>filled</code> も <code>open</code> も指定されない場合は、これが既定値です。</dd> + <dt><code>open</code></dt> + <dd>図形は中抜きになります。</dd> + <dt><code>dot</code></dt> + <dd>記号として小さな円を表示します。 filled dot は <code>'•'</code> (<code>U+2022</code>)、 open dot は <code>'◦'</code> (<code>U+25E6</code>) です。</dd> + <dt><code>circle</code></dt> + <dd>記号として大きな円を表示します。 filled circle は <code>'●'</code> (<code>U+25CF</code>)、 open circle は <code>'○'</code> (<code>U+25CB</code>) です。</dd> + <dt><code>double-circle</code></dt> + <dd>記号として二重丸を表示します。 filled double-circle は <code>'◉'</code> (<code>U+25C9</code>)、 open double-circle は <code>'◎'</code> (<code>U+25CE</code>) です。</dd> + <dt><code>triangle</code></dt> + <dd>記号として三角形を表示します。 filled triangle は <code>'▲'</code> (<code>U+25B2</code>)、 open triangle は <code>'△'</code> (<code>U+25B3</code>) です。</dd> + <dt><code>sesame</code></dt> + <dd>記号としてゴマを表示します。 filled sesame は <code>'﹅'</code> (<code>U+FE45</code>)、 open sesame は <code>'﹆'</code> (<code>U+FE46</code>) です。</dd> + <dt><code><string></code></dt> + <dd>記号として文字列を表示します。 <code><string></code> には1<em>文字</em>を超える文字列を指定しないでください。ユーザーエージェントは、1つより多い書記素クラスターから構成される文字列を短縮したり無視したりする可能性があります。</dd> +</dl> + +<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3> + +{{csssyntax}} + +<h2 id="Examples" name="Examples">例</h2> + +<pre><code>h2 { + text-emphasis-style: sesame; +}</code></pre> + +<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('CSS3 Text Decoration', '#text-emphasis-style-property', 'text-emphasis')}}</td> + <td>{{Spec2('CSS3 Text Decoration')}}</td> + <td>初回定義</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> + +<p>{{Compat("css.properties.text-emphasis-color")}}</p> + +<h2 id="See_also" name="See_also">関連情報</h2> + +<ul> + <li>関連プロパティ: {{cssxref('text-emphasis-color')}}, {{cssxref('text-emphasis')}}</li> + <li>圏点の位置の定義を可能にする {{cssxref('text-emphasis-position')}} プロパティ。</li> +</ul> |