我有两个要内联的 div(一个在左侧,一个在右侧)。右边的包含一行文本。我希望它始终是单行文本,并在必要时省略。我不能正确地进行内联,因为当我的文本太长时,右侧的 div 会跳到左侧的下方。例子:
<!doctype>
<html>
<head>
<style type="text/css">
#panelLeft {
display: inline-block;
width: 50px;
height: 20px;
background-color: #f00;
}
#panelRight {
display: inline-block;
background-color: #0f0;
/* width: 200px; */ works ok if explicitly sized
}
#test {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
</style>
</head>
<body>
<div id="panelLeft">
</div>
<div id="panelRight">
<div id="test">
This is some text that's longer than usual and that I'd like to have ellipsized, and forced to a single line, always.
</div>
</div>
</body>
</html>
相反,如果我为 panelRight 指定宽度(等于或小于剩余空间),则我的 div 位于同一行,并且省略号显示正确。当我不知道 panelRight 的确切宽度时,如何让它工作?
谢谢