HTML / CSS省略号(...)不起作用

时间:2012-05-25 23:30:13

标签: html css text overflow ellipsis

我正在尝试在我的网站上运行省略号。这是以下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>

2 个答案:

答案 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>

http://jsfiddle.net/NawcT/

编辑:解决方案是设置段落与div的样式。

答案 1 :(得分:0)

position:absolute分配给要截断的元素可能会减少float:left的不良副作用。

这对我有用:

div {
  position: absolute;
  width: 70px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}