Reputation: 45325
Here is my version:
<div>
<div style="width:200px;float:left;display:inline-block;">
123456789012345678901234567890123456789012345678901234567890123456789
</div>
<div style="margin-left:200px;">
abcdefghijklmnopqrstuvwxyz
</div>
</div>
All works fine untill text is small:
How can I fix it ?
Upvotes: 1
Views: 79
Reputation: 46778
Add word-wrap:break-word;
to your CSS rule.
<div style="width:200px;float:left;display:inline-block;word-wrap:break-word;">
Upvotes: 3