我正在尝试使用以下标准将两个 div 并排放置:
- 两个 div 必须保持在同一行。
- 必须优先考虑左 div。应在左侧 div 中显示尽可能多的文本,直至溢出时使用省略号。
- 右 div 的文本应该右对齐。在溢出的情况下,应该使用省略号。
- 文本是动态的,因此不能使用百分比或固定宽度。
- 只需要在
webkit
基于浏览器的情况下工作,因此CSS3
首选解决方案。
以下是它的外观示例图片:
输入
<div class='left'>I should always fit. If not, ellipsis should be used.</div><div class='right'>Right align and fit me if space available here.</div>
输出
输入
<div class='left'>I should always fit. If not, ellipsis should be used. And some more text and more, and more text.</div><div class='right'>Right align and fit me if space available here.</div>
输出
输入
<div class='left'>This text is left aligned.</div><div class='right'>This text is right aligned.</div>
输出