http://jsbin.com/oqotew/edit#html,live
如果您在浏览器窗口较宽的情况下访问上面的链接,则文本将显示在图像的右侧。如果缩小窗口,文本会跳到图像下方。
目标:我希望文本始终保留在图像的右侧,并在窗口变得太窄而无法包含它时溢出“...”,而不是将其撞到图像下方。那可能吗?
我的 CSS 看起来像这样:
img { float: left; margin-right: 10px; }
.details { float: left; }
a { display: block; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; color: #39C; font-size: 16px; text-decoration:none; }
html:
<img src="http://placehold.it/130x65" />
<div class="details">
<a href="#">Kind of a long title for a url. This should overflow with ellipsis if the browser gets narrower.</a>
</div>