Code Snippet

Just another Code Snippet site

[CSS] Word wrap

word-wrap: break-word;
overflow-wrap: break-word;
word-break: break-word;

The word-break property specifies line breaking rules for non-CJK scripts.

The word-wrap property allows long words to be able to be broken and wrap onto the next line.

The overflow-wrap property specifies whether or not particularly long words will be ‘broken’ (separated into multiple lines) if necessary in order to fit in within its container.


Leave a Reply

Your email address will not be published. Required fields are marked *