我正在尝试将文本环绕在浮动图像周围,并将长href 作为文本的一部分。
我可以让文本换行没有问题,但是当我添加一个长链接(其宽度超过浮动图像的宽度)时,链接被强制低于浮动图像。
所以这:
__________________________
| text text text _____ |
| text text text | | |
| text text text |_____| |
| text text text |
| text text text text text |
| text text. |
|__________________________|
变成这样:
__________________________
| text text text _____ |
| text text text | | |
| text text |_____| |
| |
| <this is the link> text |
| text text text text text |
| text. |
|__________________________|
我想要这个:
__________________________
| text text text _____ |
| text text text | | |
| text text <this |_____| |
| is the link> |
| text text text text text |
| text text. |
|__________________________|
我试过“word-break:break-all;” 但当然,这会破坏每一行,通常是中间词。
我曾考虑使用 JavaScript 在“a”标签的文本部分中的协议、域、扩展名和任何 uri 参数之后插入“<wbr />”标签,但希望有一个 CSS 解决方案,如果存在的话。
这是难题http://jsfiddle.net/vBbau/2/的 JSFiddle 。
有人知道对此有更优雅的解决方案吗?
干杯。