我有一个大文本“脱氧核糖核酸”,编号0.4234或0.352352523
所以我需要这样的格式代表它:
text:desoxyribon ... 数量:0.42 数量:0.35
用CSS推出这个是真的吗? 感谢名单!
答案 0 :(得分:2)
烨!
.ellipsis {
max-width: 100px; /* adjust as needed */
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis; /* magic happens here */
}
对于数字,您可以尝试在JavaScript中使用someNumber.toFixed(2)
,只需注意舍入。