Word wrap
Utilities for controlling the way words wrap within an element. Generally used for handling overflow of long strings that are actually supposed to be a single unbroken word, like URLs or file paths.
Normal
Use d-ww-normal to break words only at allowed break points.
<p class="d-ww-normal">...</p>
Break word
Use d-ww-break-word to allow unbreakable words to be broken. Is a more conservative approach than d-wb-break-all and will only break long words that do not fit the container.
<p class="d-ww-break-word">...</p>
Anywhere
Use d-ww-anywhere to break words at any point in the string (not just at allowed break points) to prevent long strings from overflowing their container.
<p class="d-ww-anywhere">...</p>
Initial
Use d-ww-initialto set this property to its default value.
<p class="d-ww-initial">...</p>
Inherit
Use d-ww-inherit to inherit this property from its parent element.
<p class="d-ww-inherit">...</p>