text-emphasis-colorプロパティの説明
CSSのtext-emphasis-color
プロパティは、テキストに付加する圏点、傍点、脇点の色を指定します。圏点(けんてん)、傍点(ぼうてん)、脇点(わきてん)とは、日本語の文章で文字の強調を行うときに、文字の上や脇に付加する装飾的な点のことです。
圏点に使用する記号を変えるには、text-emphasis-style
を使用します。これらの値は、ショートハンド・プロパティのtext-emphasis
で一括操作できます。
text-emphasis-colorに指定できる値
<color>
- 圏点の色を指定する値です。初期値は
currentcolor
です。
text-emphasis-colorの使い方とサンプルコード
text-emphasis-color
プロパティの構文は以下の通りです。
/* 初期値 */
text-emphasis-color: currentcolor;
/* <color>値 */
text-emphasis-color: cyan;
text-emphasis-color: magenta;
text-emphasis-color: #f00;
text-emphasis-color: #ff0000;
text-emphasis-color: rgb(0, 153, 255);
text-emphasis-color: rgba(0, 153, 255, 0.7);
text-emphasis-color: transparent;
/* グローバル値 */
text-emphasis-color: inherit;
text-emphasis-color: initial;
text-emphasis-color: revert;
text-emphasis-color: unset;
text-emphasis-colorの実例
それでは実際にtext-emphasis-color
プロパティの書き方を見ていきましょう。以下の例は、段落の中の特定の文字列に対して圏点を付加した時の表示です。
ここでは、text-emphasis-style
とtext-emphasis-color
を分けて表記していますが、一般的にはtext-emphasis
を使う場面の方が多いでしょう。
<div class="samp_box">
<section>
<p>圏点を<span class="te_1">重要な部分</span>に表示します。</p>
<div>
text-emphasis-style: filled;<br>
text-emphasis-color: black;<br>
</div>
</section>
<section>
<p>圏点を<span class="te_2">重要な部分</span>に表示します。</p>
<div>
text-emphasis-style: open double-circle;<br>
text-emphasis-color: #03a;<br>
</div>
</section>
<section>
<p>圏点を<span class="te_3">重要な部分</span>に表示します。</p>
<div>
text-emphasis-style: filled sesame;<br>
text-emphasis-color: rgb(255, 0, 0);<br>
</div>
</section>
<section>
<p>圏点を<span class="te_4">重要な部分</span>に表示します。</p>
<div>
text-emphasis-style: '★';<br>
text-emphasis-color: hsl(330, 100%, 63%);<br>
</div>
</section>
</div>
.samp_box {
overflow: auto;
padding: 1rem;
background: #eee;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}
.samp_box > section {
overflow: auto;
padding: 0 1rem 1rem;
background: #fff;
}
section > p {
margin: 1rem 0 0;
}
section > div {
margin: .5rem 0 0;
font-size: 0.875rem;
}
.te_1 {
text-emphasis-style: filled;
text-emphasis-color: black;
}
.te_2 {
text-emphasis-style: open double-circle;
text-emphasis-color: #03a;
}
.te_3 {
text-emphasis-style: filled sesame;
text-emphasis-color: rgb(255, 0, 0);
}
.te_4 {
text-emphasis-style: '★';
text-emphasis-color: hsl(330, 100%, 63%);
}
縦書きの文章に圏点を表示させる
小説のような縦書きの文書で圏点はよく使われます。それをウェブページで再現するには、いくつかのCSSプロパティを記述する必要があります。詳しい内容はtext-emphasis
で解説します。ページ下部の縦書き形式のサンプルを参照して下さい。