html代碼
<divid="d1">
</div>
css代碼
#d1{
width:300px;
overflow:hidden;
white-space:nowrap;
text-overflow:ellipsis;
-webkit-text-overflow:ellipsis;
}```
注:關(guān)鍵是給容器指定寬度,并且利用white-space:nowrap;屬性阻止超出部分自動(dòng)換行,省略號(hào)則是由text-overflow:ellipsis;實(shí)現(xiàn)的