通常使用 ellipsis 将溢出部分显示为省略号必须给出指定像素宽度(width:200px),这样不方便共享响应式的样式定义,经过查资料,可以用 CSS 的 calc() 函数实现。文章来源地址https://www.toymoban.com/news/detail-733334.html
table > tbody > tr > td.file > a {
display: inline-block;
height: 45px;
padding-left: 46px;
background-repeat: no-repeat;
margin-top: 10px;
margin-bottom: 10px;
width: calc(50%);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
文章来源:https://www.toymoban.com/news/detail-733334.html
到了这里,关于CSS(ellipsis) 用百分比宽度将字符串溢出部分显示为省略号的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!