Я пытаюсь создать отображение страницы на мобильном телефоне.Его раскладка выглядит так:
/---------\ some text around
| | the image. some
| image | text around the
| | image. some text
\---------/ around the image.
some word around the image.
some word around the image.
Я использую плавающий стиль для реализации этого:
<div style="word-wrap: break-word; word-break: break-all;">
<img src="someimg.jpg" style="float: left;"/>
some text around the image. some text around the image. ...
</div>
Однако, если слово длиннее, чем максимальная длина правой области, но короче, чем весь div, это не будет разрыв, вместо этого он просто будет перемещен ниже изображения.
/---------\ some text around
| | the image.
| image |
| |
\---------/
a-word-longer-than-right will
not be break and just display
below the image while a-word-
longer-than-the-whole-area-wi
ll-be-break-into-next-line
Как я могу разбить слово длиннее правой стороны и заполнить пустую область вверх?