定義と使用方
text-emphasis-color
プロパティは、
text-emphasis-style
で指定された要素のテキスト強調表示の色を指定します。
このプロパティを使用すると、テキストの色以外にも強調表示の色を自由に指定することができます。
色を明示的に指定しない場合、強調表示の色はデフォルトでテキスト自体の計算済みの現在の色で表示されます。
基本の例
テキスト強調表示の色はredです。
参考事項:関連プロパティ
text-emphasis-color
プロパティによる強調表示の色の設定以外にも、テキストの強調表示スタイルに関連するプロパティがあります。
これらのプロパティと併用することで、テキストの強調表示をより多様にスタイリングすることができます。
text-emphasis-style
|
強調表示の形状を設定します。 |
---|---|
text-emphasis |
強調表示の形状と色を一度に設定できるショートハンドプロパティです。 |
text-emphasis-position |
強調表示の位置を設定します。 |
形式の構文
selector {
text-emphasis-color: <color>
}
値
<color> |
色の値 |
---|
構文
/* <color>の値 */
text-emphasis-color: currentcolor;
text-emphasis-color: red;
text-emphasis-color: #00a0e9;
text-emphasis-color: rgb(255, 255, 128);
text-emphasis-color: rgba(255, 255, 128, 0.5);
text-emphasis-color: transparent;
/* グローバル値 */
text-emphasis-color: inherit;
text-emphasis-color: initial;
text-emphasis-color: revert;
text-emphasis-color: revert-layer;
text-emphasis-color: unset;
形式の定義
初期値 | currentcolor (現在の文字色) |
---|---|
適用対象の要素 | すべての要素 |
継承 | はい |
アニメーション | はい |
例
p span {
text-emphasis-style: triangle;
text-emphasis-color: red;
}
<p>テキストに<span>強調表示</span>があります。</p>
テキストに強調表示があります。
ブラウザ互換性
プロパティ |
デスクトップ Chrome
|
デスクトップデスクトップ Edge
|
デスクトップ Firefox
|
Safari
|
---|---|---|---|---|
text-emphasis-color
|
99 | 99 | 46 | 7 |
仕様書
仕様書 | |
---|---|
text-emphasis-color
|
CSS Text Decoration Module Level 4 #text-emphasis-color-property |