HyphenationEdit online
Hyphenation specifies how words should be hyphenated when text wraps across multiple lines.
How to Enable Hyphenation for Entire MapEdit online
To enable hyphenation for your entire map:
- Make sure you set an
@xml:langattribute on the root of your map. - In your customization CSS,
add:
:root { hyphens: auto; } - To except certain elements from being hyphenated, use
hyphens:none. The following example excludes the<keyword>elements from being hyphenated:*[class ~= "topic/keyword"] { hyphens: none; }
How to Enable/Disable Hyphenation for TablesEdit online
To enable hyphenation for your entire map:
- Make sure you set an
@xml:langattribute on the root of your map or your table elements. - In your customization CSS,
add:
*[class ~= "topic/table"] { hyphens: auto; } - To except certain elements from being hyphenated, use
hyphens:none. The following example excludes the<keyword>elements from being hyphenated:*[class ~= "topic/keyword"] { hyphens: none; }