This feature is well established and works across many devices and browser versions. It’s been available across browsers since March 2022.
* Some parts of this feature may have varying levels of support.
The text-emphasis-position CSS property sets where emphasis marks are drawn. Similar to the text rendered by the <ruby> HTML element, if there isn't enough room for emphasis marks, the line height is increased.
text-emphasis-position: auto;
text-emphasis-position: over right;
text-emphasis-position: under right;
text-emphasis-position: auto; writing-mode: vertical-rl;
text-emphasis-position: over left; writing-mode: vertical-rl;
text-emphasis-position: over right; writing-mode: vertical-rl;
<section id="default-example">
<p>
I'd far rather be
<span class="transition-all" id="example-element">happy than right</span>
any day.
</p>
</section>
p {
font: 1.5em sans-serif;
}
#example-element {
text-emphasis: filled double-circle #ffb703;
}
/* Initial value */ text-emphasis-position: auto; /* Keyword values */ text-emphasis-position: over; text-emphasis-position: under; text-emphasis-position: over right; text-emphasis-position: over left; text-emphasis-position: under right; text-emphasis-position: under left; text-emphasis-position: left over; text-emphasis-position: right over; text-emphasis-position: right under; text-emphasis-position: left under; /* Global values */ text-emphasis-position: inherit; text-emphasis-position: initial; text-emphasis-position: revert; text-emphasis-position: revert-layer; text-emphasis-position: unset;
The property accepts one or two values:
auto, over, or under. When only over or under is used, right is assumed as the default position.over or under and one of right or left. Their order does not matter.The values include:
autoDraws marks over the text in horizontal writing mode and to the right of the text in vertical writing mode.
overDraws marks over the text in horizontal writing mode.
underDraws marks under the text in horizontal writing mode.
rightDraws marks to the right of the text in vertical writing mode.
leftDraws marks to the left of the text in vertical writing mode.
The preferred position of emphasis marks depends on the language. In Japanese for example, the preferred position is over right. In Chinese, on the other hand, the preferred position is under right. The informative table below summarizes the preferred emphasis mark positions for Chinese, Mongolian and Japanese:
| Language | Preferred position | Illustration | ||
|---|---|---|---|---|
| Horizontal | Vertical | |||
| Japanese | over | right | | |
| Korean | ||||
| Mongolian | ||||
| Chinese | under | right | | |
Note: The text-emphasis-position cannot be set, and therefore are not reset either, using the text-emphasis shorthand property.
| Initial value | auto |
|---|---|
| Applies to | all elements |
| Inherited | yes |
| Computed value | as specified |
| Animation type | discrete |
text-emphasis-position =
[ over | under ] &&
[ right | left ]?
Use the drop down menu to change the position of the emphasis marks. This will change the class on the <section> element, which in turn, will update the position of the emphasis marks on the text.
<section id="setting" class="auto"> <p class="horizontal" lang="zh">你好世界</p> <!-- Hello World in Chinese --> <p class="vertical" lang="ja">世界、こんにちは。</p> <!-- Hello World in Japanese --> </section>
section p {
text-emphasis: filled circle tomato;
text-emphasis-position: auto;
}
.over-right p,
.preferred p [lang="ja"] {
text-emphasis-position: over right;
}
.over-left p {
text-emphasis-position: over left;
}
.under-right p,
.preferred p [lang="zh"] {
text-emphasis-position: under right;
}
.under-left p {
text-emphasis-position: under left;
}
.preferred p [lang="ja"] {
}
Use the "Emphasis position" drop down to choose the location of the emphasis marks. The preferred option in the drop down uses the preferred positions, as explained in the Description section.
Some editors prefer to hide emphasis marks when they conflict with ruby. In HTML, this can be done with the following style rule:
ruby {
text-emphasis: none;
}
Some other editors prefer to hide ruby when they conflict with emphasis marks. In HTML, this can be done with the following pattern:
em {
text-emphasis: dot; /* Set text-emphasis for <em> elements */
}
em rt {
display: none; /* Hide ruby inside <em> elements */
}
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
text-emphasis-position |
9925 | 9979 | 46 | 8515 | 77 | 9925 | 46 | 6814 | 77 | 18.01.5 | 994.4 | 77 |
auto |
No | No | 132 | No | No | No | 132 | No | No | No | No | No |
left |
62 | 79 | 46 | 49 | 8 | 62 | 46 | 46 | 8 | 8.0 | 62 | 8 |
over |
99 | 99 | 108 | 85 | 7 | 99 | 108 | 68 | 7 | 18.0 | 99 | 7 |
right |
62 | 79 | 46 | 49 | 8 | 62 | 46 | 46 | 8 | 8.0 | 62 | 8 |
under |
99 | 99 | 108 | 85 | 7 | 99 | 108 | 68 | 7 | 18.0 | 99 | 7 |
text-underline-positiontext-emphasis-styletext-emphasis-colortext-emphasis shorthand propertywriting-mode
© 2005–2025 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-position