The text-emphasis-color
CSS property sets the color of emphasis marks. This value can also be set using the text-emphasis
shorthand.
On this page
text-emphasis-color
Try it
Syntax
css
/* Initial value */
text-emphasis-color: currentcolor;
/* <color> */
text-emphasis-color: #555;
text-emphasis-color: blue;
text-emphasis-color: rgba(90, 200, 160, 0.8);
text-emphasis-color: transparent;
/* Global values */
text-emphasis-color: inherit;
text-emphasis-color: initial;
text-emphasis-color: revert;
text-emphasis-color: revert-layer;
text-emphasis-color: unset;
Values
-
<color>
-
Defines the color of the emphasis marks. If no color is present, it defaults to
currentcolor
.
Formal definition
Initial value | currentcolor |
---|---|
Applies to | all elements |
Inherited | yes |
Computed value | computed color |
Animation type | a color |
Formal syntax
text-emphasis-color =
<color>
Examples
Emphasis with a color and custom character
CSS
css
em {
text-emphasis-color: green;
text-emphasis-style: "*";
}
HTML
html
<p>Here's an example:</p>
<em>This has emphasis marks!</em>
Result
Specifications
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
text-emphasis-color |
9925 | 9979 | 46 | No | 8515 | 77 | 994.4 | 9925 | 46 | 6814 | 77 | 18.01.5 |
See also
- The
<color>
data type - The other emphasis mark related properties:
text-emphasis-style
,text-emphasis
, andtext-emphasis-position
. - Other color-related properties:
color
,background-color
,border-color
,outline-color
,text-emphasis-color
,text-shadow
,caret-color
, andcolumn-rule-color
- Applying color to HTML elements using CSS
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/text-emphasis-color