<div class="a">
honorificabilitudinitatibus
</div>
css:
.a{
width: 100px;
background: red;
color: #fff;
}
<div class="a">
Her mother is affectionate to me,
so I always want to chat with mother.
</div>
css:
.a{
width: 100px;
background: red;
word-break: break-all;
}
<div class="a">
Her mother is <span> affectionate</span> to me,
so I always want to chat with mother.
</div>
css:
.a{
width: 100px;
background: red;
word-wrap: break-word;
}