i've got a table that need to look not ugly on a phone but on my phone the first text doesnt get split by default but the text with -
will
is there a way to split a Text that isnt cut off by space
or -
with CSS?
// WHAT I MEAN
.small{
max-width: 10px;
}
<div class="small">
<span>This Text gets split</span>
</div>
<div style="min-height: 15px"></div>
<div class="small">
<span>ThisWontGetSpilt</span>
</div>
<div style="min-height: 15px"></div>
<div class="small">
<span>This-Will-Get-Split-As-Well</span>
</div>