我在向左浮动的跨度和向右浮动的跨度之间发现省略号文本 (.title) 时遇到问题。当溢出发生时,.length 被下推到新的一行。我怎样才能解决这个问题?
JS 小提琴:http: //jsfiddle.net/VfHdS/6/
HTML:
<div class="song">
<span class="tracknumber">4</span>
<div class="title">This is the song tittle!!!!!!!!!!!</div>
<span class="length">4:31</span>
</div>
CSS:
.song {
font-size: 14px;
padding: 2px 20px;
}
.tracknumber {
margin-right: 10px;
}
.title {
color: #262626;
display:inline-block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.length {
float: right;
}