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; }