CSS实现单行文本溢出显示省略号

p
{
width:100px;//设定宽度
//以下三个属性设置均必不可少
white-space: nowrap;
text-overflow:ellipsis;
overflow:hidden;
}

css样式设置如上