I used the bottom slot wrapper in a div, but it doesn't seem to work at all. Any alternatives.
word-wrap: break-word;
This is CSS 3, how about CSS 2 thanks to Jean
This is a CSS3 attribute, so make sure your browser supports CSS3.
Try:
div {
text-align: justify; white-space: normal !important;
}
and also set a fixed width in the div.
div.mydiv { white-space: normal; }
.
FF CSS3, Mozilla.org. Mozilla
text-align:justify;
Firefox 3.5 (. doc). white-space (doc) .
.mydiv1 { word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto;} .mydiv2 { word-break: break-all;}
The mydiv1 class has a combination of word-break: break-all and word-wrap: break-word. Although in the mydiv2 class there is only "word-break: break-all".
Sententedagang.com
Source: https://habr.com/ru/post/1742809/More articles:JQuery - Check for bad words on a submit form? - jqueryByteArrayOutputStream for PrintWriter (Java Servlet) - javaЧто вы думаете о сохранении трассировки стека в специальной таблице журналов? - javaTransfer control + c (SIGINT) to NSPIPE in objective-C - objective-cWhy doesn't Silverlight support IME? - silverlightUsing ORDER BY Software - selectgetSelection on DIV contentEditable - javascriptTag injection using master data on iPhone - objective-cDisplay popup in new Facebook JavaScript SDK - javascriptoracle select query - pointer to multiple columns - oracleAll Articles