files/en-us/web/css/reference/properties/hyphenate-character/index.md
The hyphenate-character CSS property sets the character (or string) used at the end of a line before a hyphenation break.
Both automatic and soft hyphens are displayed according to the specified hyphenate-character value.
{{InteractiveExample("CSS Demo: hyphenate-character")}}
hyphenate-character: auto;
hyphenate-character: "=";
hyphenate-character: "—";
<section id="default-example">
<p id="example-element">An extraordinarily long English word!</p>
</section>
#example-element {
border: 2px dashed #999999;
font-size: 1.5rem;
text-align: left;
width: 7rem;
hyphens: auto;
}
hyphenate-character: <string>;
hyphenate-character: auto;
The value either sets the string to use instead of a hyphen, or indicates that the user agent should select an appropriate string based on the current typographic conventions (default).
<string>
auto
{{CSSInfo}}
{{csssyntax}}
This example shows two identical blocks of text that have {{cssxref("hyphens")}} set to ensure that they break wherever needed, and on soft hyphen breaks (created using ­).
The first block has the value of the hyphen changed to the equals symbol (=).
The second block has no hyphenate-character set, which is equivalent to hyphenate-character: auto for user agents that support this property.
<dl>
<dt><code>hyphenate-character: "="</code></dt>
<dd id="string" lang="en">Superc­alifragilisticexpialidocious</dd>
<dt><code>hyphenate-character is not set</code></dt>
<dd lang="en">Superc­alifragilisticexpialidocious</dd>
</dl>
dd {
width: 90px;
border: 1px solid black;
hyphens: auto;
}
dd#string {
-webkit-hyphenate-character: "=";
hyphenate-character: "=";
}
{{EmbedLiveSample("Examples", "100%", 350)}}
{{Specifications}}
{{Compat}}