text-emphasis-position
Quick Summary for text-emphasis-position
The text-emphasis-position CSS property sets where emphasis marks are drawn. Like ruby text, if there isn't enough room for emphasis marks, the line height is increased.
Code Usage for text-emphasis-position

<pre class="brush: css notranslate"><code><span class="token comment">/ Initial value /</span> <span class="token property">text-emphasis-position</span><span class="token punctuation">:</span> over right<span class="token punctuation">;</span> <span class="token comment">/ Keywords value /</span> <span class="token property">text-emphasis-position</span><span class="token punctuation">:</span> over left<span class="token punctuation">;</span> <span class="token property">text-emphasis-position</span><span class="token punctuation">:</span> under right<span class="token punctuation">;</span> <span class="token property">text-emphasis-position</span><span class="token punctuation">:</span> under left<span class="token punctuation">;</span> <span class="token property">text-emphasis-position</span><span class="token punctuation">:</span> left over<span class="token punctuation">;</span> <span class="token property">text-emphasis-position</span><span class="token punctuation">:</span> right under<span class="token punctuation">;</span> <span class="token property">text-emphasis-position</span><span class="token punctuation">:</span> left under<span class="token punctuation">;</span> <span class="token comment">/ Global values /</span> <span class="token property">text-emphasis-position</span><span class="token punctuation">:</span> inherit<span class="token punctuation">;</span> <span class="token property">text-emphasis-position</span><span class="token punctuation">:</span> initial<span class="token punctuation">;</span> <span class="token property">text-emphasis-position</span><span class="token punctuation">:</span> revert<span class="token punctuation">;</span> <span class="token property">text-emphasis-position</span><span class="token punctuation">:</span> unset<span class="token punctuation">;</span> </code></pre>

More Details for text-emphasis-position

text-emphasis-position

The text-emphasis-position CSS property sets where emphasis marks are drawn. Like ruby text, if there isn't enough room for emphasis marks, the line height is increased.

/* Initial value */ text-emphasis-position: over right;  /* Keywords value */ text-emphasis-position: over left; text-emphasis-position: under right; text-emphasis-position: under left;  text-emphasis-position: left 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: unset; 

Syntax

Values

over

Draws marks over the text in horizontal writing mode.

under

Draws marks under the text in horizontal writing mode.

right

Draws marks to the right of the text in vertical writing mode.

left

Draws marks to the left of the text in vertical writing mode.

Description

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:

Preferred emphasis mark and ruby position
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.

Formal definition

Initial valueover right
Applies toall elements
Inheritedno
Computed valueas specified
Animation typediscrete

Formal syntax

[ over | under ] && [ right | left ]

Examples

Preferring ruby over emphasis marks

Some editors prefer to hide emphasis marks when they conflict with ruby. In HTML, this can be done with the following style rule:

ruby {   -webkit-text-emphasis: none;   text-emphasis: none; } 

Preferring emphasis marks over ruby

Some other editors prefer to hide ruby when they conflict with emphasis marks. In HTML, this can be done with the following pattern:

em {   -webkit-text-emphasis: dot;   text-emphasis: dot; /* Set text-emphasis for <em> elements */ }  em rt {   display: none; /* Hide ruby inside <em> elements */ } 

Specifications

Specification
CSS Text Decoration Module Level 3 # text-emphasis-position-property

See also

The longhand properties text-emphasis-style, text-emphasis-color, and the corresponding shorthand property text-emphasis.

Last modified: Jan 31, 2022, by MDN contributors

No Items Found.

Add Comment
Type in a Nick Name here
 
Other Categories in CSS
css
Search CSS
Search CSS by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

You could also follow me on twitter. I have a couple of youtube channels if you want to see some video related content. RuneScape 3, Minecraft and also a coding channel here Web Dev.

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
When i was a little kid, I was really scared of the dark. But then I came to understand, dark just means the absence of photons in the visible wavelength -- 400 to 700 nanometers. Then i thought, well, its really silly to be afraid of a lack of photons. Then i wasn't afraid of the dark anymore after that.
Elon Musk
Latest News
## 🚀 AI Giants Hit Bullseye: Anthropic & OpenAI Achieve Product-Market Fit Anthropic and OpenAI have reached a significant milestone, finding product-market fit with their AI technologies, which means their products effectively meet the needs of their customers, driving growth and adoption. This achievement showcases the practical value of their innovations, enabling businesses and individuals to leverage AI for enhanced productivity and efficiency. With this alignment of product and market needs, these companies are poised to transform industries and shape the future of technology.