hyphenate-character
Quick Summary for hyphenate-character
The hyphenate-character CSS property sets the character (or string) used at the end of a line before a hyphenation break.
Code Usage for hyphenate-character
hyphenate-character: <string>; hyphenate-character: auto; 
More Details for hyphenate-character

hyphenate-character

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.

Syntax

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

hyphenate-character: <string>; hyphenate-character: auto; 

Values

<string>

The <string> to use at the end of the line before a hyphenation break. The user agent may truncate this value if too many characters are used.

auto

The user-agent selects an appropriate string based on the content language's typographic conventions. This is the default property value, and only needs to be explicitly set in order to override a different inherited value.

Formal definition

Initial valueauto
Applies toall elements
Inheritedyes
Computed valueas specified
Animation typediscrete

Formal syntax

auto | <string>

Examples

This example shows two identical blocks of text that have hyphens set to ensure that they break wherever needed, and on soft hyphen breaks (created using &shy;). 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.

HTML
<dl>   <dt><code>hyphenate-character: "*"</code></dt>   <dd id="string" lang="en">Superc&shy;alifragilisticexpialidocious</dd>   <dt><code>hyphenate-character is not set</code></dt>   <dd lang="en">Superc&shy;alifragilisticexpialidocious</dd> </dl> 
CSS
dd {   width: 90px;   border: 1px solid black;   hyphens: auto; }  dd#string {   -webkit-hyphenate-character: "*";   hyphenate-character: "*"; } 
Result

Specifications

Specification
CSS Text Module Level 4 # propdef-hyphenate-character

See also

Related CSS properties: hyphens, overflow-wrap. Select your preferred language English (US)日本語 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
“If you just sit and observe, you will see how restless your mind is. If you try to calm it, it only makes it worse, but over time it does calm, and when it does, there’s room to hear more subtle things. You see so much more than you could see before. It’s a discipline; you have to practice it.”
Steve Jobs
Random CSS Property

content-visibility

The content-visibility CSS property controls whether or not an element renders its contents at all, along with forcing a strong set of containments, allowing user agents to potentially omit large swathes of layout and rendering work until it becomes needed. Basically it enables the user agent to skip an element's rendering work (including layout and painting) until it is needed — which makes the initial page load much faster.
content-visibility css reference