whitespace
by ShaCP
HTML
<p id="text">Some Long Text</p>
<p id="text2">SomeLongText</p>
CSS
* {
border: 1px solid;
}
p {
font-size: 5rem;
max-width: 25rem;
display: block;
}
#text2 {
overflow-wrap: break-word;
}
by ShaCP
<p id="text">Some Long Text</p>
<p id="text2">SomeLongText</p>
* {
border: 1px solid;
}
p {
font-size: 5rem;
max-width: 25rem;
display: block;
}
#text2 {
overflow-wrap: break-word;
}