files/en-us/web/css/reference/properties/text-emphasis-style/index.md
The text-emphasis-style CSS property sets the appearance of emphasis marks. It can also be set, and reset, using the {{cssxref("text-emphasis")}} shorthand.
{{InteractiveExample("CSS Demo: text-emphasis-style")}}
text-emphasis-style: none;
text-emphasis-style: triangle;
text-emphasis-style: "x";
text-emphasis-style: filled double-circle;
<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;
}
/* Initial value */
text-emphasis-style: none; /* No emphasis marks */
/* <string> values */
text-emphasis-style: "x";
text-emphasis-style: "\25B2";
text-emphasis-style: "*";
/* Keyword values */
text-emphasis-style: filled;
text-emphasis-style: open;
text-emphasis-style: dot;
text-emphasis-style: circle;
text-emphasis-style: double-circle;
text-emphasis-style: triangle;
text-emphasis-style: filled sesame;
text-emphasis-style: open sesame;
/* Global values */
text-emphasis-style: inherit;
text-emphasis-style: initial;
text-emphasis-style: revert;
text-emphasis-style: revert-layer;
text-emphasis-style: unset;
none
filled
filled nor open is present, this is the default.open
dot
'•' (U+2022), and the open dot is '◦' (U+25E6).circle
'●' (U+25CF), and the open circle is '○' (U+25CB).double-circle
'◉' (U+25C9), and the open double-circle is '◎' (U+25CE).triangle
'▲' (U+25B2), and the open triangle is '△' (U+25B3).sesame
'﹅' (U+FE45), and the open sesame is '﹆' (U+FE46).<string>
<string>. The UA may truncate or ignore strings consisting of more than one grapheme cluster.{{CSSInfo}}
{{csssyntax}}
h2 {
-webkit-text-emphasis-style: sesame;
text-emphasis-style: sesame;
}
{{Specifications}}
{{Compat}}