我正在尝试在我的网站上运行省略号。这是以下HTML / CSS代码,它似乎不起作用。
CSS:
.oneline {
text-overflow:ellipsis;
white-space: nowrap;
width: 50px;
overflow: hidden;
}
HTML:
<div class="oneline">Testing 123 Testing 456 Testing 789</div>
答案 0 :(得分:10)
基于initial post,我们都假设显而易见,但以防万一......;)
<style type="text/css">
.oneline {
text-overflow : ellipsis;
white-space : nowrap;
width : 50px;
overflow : hidden;
}
</style>
<div class="oneline">Testing 123 Testing 456 Testing 789</div>
编辑:解决方案是设置段落与div的样式。
答案 1 :(得分:0)
将position:absolute
分配给要截断的元素可能会减少float:left
的不良副作用。
这对我有用:
div {
position: absolute;
width: 70px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}