欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

css 文字超出变省略号

程序员文章站 2022-04-22 16:07:58
...

css 文字超出变…

.tableExceed{
    display: block;
    width: 200px;

	// 这三个属性,要给元素加宽度
    text-overflow:ellipsis;
    white-space:nowrap;
    overflow:hidden;
    // END
}
相关标签: css css3