text-emphasis
Quick Summary for text-emphasis
The text-emphasis CSS property applies emphasis marks to text (except spaces and control characters). It is a shorthand for text-emphasis-style and text-emphasis-color.
Code Usage for text-emphasis
/* Initial value */ text-emphasis: none; /* No emphasis marks */  /* <string> value */ text-emphasis: 'x'; text-emphasis: '点'; text-emphasis: '\25B2'; text-emphasis: '*' #555; text-emphasis: 'foo'; /* Should NOT use. It may be computed to or rendered as 'f' only */  /* Keywords value */ text-emphasis: filled; text-emphasis: open; text-emphasis: filled sesame; text-emphasis: open sesame;  /* Keywords value combined with a color */ text-emphasis: filled sesame #555;  /* Global values */ text-emphasis: inherit; text-emphasis: initial; text-emphasis: revert; text-emphasis: unset; 
More Details for text-emphasis

text-emphasis

The text-emphasis CSS property applies emphasis marks to text (except spaces and control characters). It is a shorthand for text-emphasis-style and text-emphasis-color.

The text-emphasis property is quite different from text-decoration. The text-decoration property does not inherit, and the decoration specified is applied across the whole element. However, text-emphasis does inherit, which means it is possible to change emphasis marks for descendants.

The size of the emphasis symbol, like ruby symbols, is about 50% of the size of the font, and text-emphasis may affect line height when the current leading is not enough for the marks.

Note: text-emphasis doesn't reset the value of text-emphasis-position. This is because if the style and the color of emphasis marks may vary in a text, it is extremely unlikely that their position will. In the very rare cases when this is needed, use the property text-emphasis-position.

Constituent properties

This property is a shorthand for the following CSS properties:

text-emphasis-color text-emphasis-style

Syntax

/* Initial value */ text-emphasis: none; /* No emphasis marks */  /* <string> value */ text-emphasis: 'x'; text-emphasis: '点'; text-emphasis: '\25B2'; text-emphasis: '*' #555; text-emphasis: 'foo'; /* Should NOT use. It may be computed to or rendered as 'f' only */  /* Keywords value */ text-emphasis: filled; text-emphasis: open; text-emphasis: filled sesame; text-emphasis: open sesame;  /* Keywords value combined with a color */ text-emphasis: filled sesame #555;  /* Global values */ text-emphasis: inherit; text-emphasis: initial; text-emphasis: revert; text-emphasis: unset; 

Values

none

No emphasis marks.

filled

The shape is filled with solid color. If neither filled nor open is present, this is the default.

open

The shape is hollow.

dot

Display small circles as marks. The filled dot is '•' (U+2022), and the open dot is '◦' (U+25E6).

circle

Display large circles as marks. The filled circle is '●' (U+25CF), and the open circle is '○' (U+25CB). This is the default shape in horizontal writing modes when no other shape is given.

double-circle

Display double circles as marks. The filled double-circle is '◉' (U+25C9), and the open double-circle is '◎' (U+25CE).

triangle

Display triangles as marks. The filled triangle is '▲' (U+25B2), and the open triangle is '△' (U+25B3).

sesame

Display sesames as marks. The filled sesame is '﹅' (U+FE45), and the open sesame is '﹆' (U+FE46). This is the default shape in vertical writing modes when no other shape is given.

<string>

Display the given string as marks. Authors should not specify more than one character in <string>. The UA may truncate or ignore strings consisting of more than one grapheme cluster.

<color>

Defines the color of the mark. If no color is present, it defaults to currentcolor.

Formal definition

Initial valueas each of the properties of the shorthand:text-emphasis-style: nonetext-emphasis-color: currentcolor
Applies toall elements
Inheritedno
Computed valueas each of the properties of the shorthand:text-emphasis-style: as specifiedtext-emphasis-color: computed color
Animation typeas each of the properties of the shorthand:text-emphasis-color: a colortext-emphasis-style: discrete

Formal syntax

<'text-emphasis-style'> || <'text-emphasis-color'>

Examples

A heading with emphasis shape and color

This example draws a heading with triangles used to emphasize each character.

CSS
h2 {   -webkit-text-emphasis: triangle #D55;   text-emphasis: triangle #D55; } 
HTML
<h2>This is important!</h2> 
Result

Specifications

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

See also

The longhand properties text-emphasis-style, text-emphasis-color. The text-emphasis-position property allowing to define the position of the emphasis marks. Select your preferred language English (US)EspañolFrançais日本語 Change language

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...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

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

"Olivia, my eldest daughter, caught measles when she was seven years old. As the illness took its usual course I can remember reading to her often in bed and not feeling particularly alarmed about it. Then one morning, when she was well on the road to recovery, I was sitting on her bed showing her how to fashion little animals out of coloured pipe-cleaners, and when it came to her turn to make one herself, I noticed that her fingers and her mind were not working together and she couldn’t do anything. 'Are you feeling all right?' I asked her. 'I feel all sleepy,' she said. In an hour, she was unconscious. In twelve hours she was dead. The measles had turned into a terrible thing called measles encephalitis and there was nothing the doctors could do to save her. That was...in 1962, but even now, if a child with measles happens to develop the same deadly reaction from measles as Olivia did, there would still be nothing the doctors could do to help her. On the other hand, there is today something that parents can do to make sure that this sort of tragedy does not happen to a child of theirs. They can insist that their child is immunised against measles. ...I dedicated two of my books to Olivia, the first was ‘James and the Giant Peach’. That was when she was still alive. The second was ‘The BFG’, dedicated to her memory after she had died from measles. You will see her name at the beginning of each of these books. And I know how happy she would be if only she could know that her death had helped to save a good deal of illness and death among other children."

I just checked google books for BFG, and the dedication is there. 

https://www.google.com.au/books/edition/_/quybcXrFhCIC?hl=en&gbpv=1 


Roald Dahl, 1986
Random CSS Property

border-top

The border-top shorthand CSS property sets all the properties of an element's top border.
border-top css reference