我有一个大的文本“脱氧核糖核酸”和编号0.4234或0.352352523。
所以我需要这样的格式来表示它:
文字:脱氧核糖核酸..。号码: 0.42编号: 0.35
用CSS推出这款游戏是真的吗?谢谢!
发布于 2014-03-24 16:48:25
是啊!
.ellipsis {
max-width: 100px; /* adjust as needed */
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis; /* magic happens here */
}对于数字,您可以尝试在someNumber.toFixed(2)中使用JavaScript,但要小心舍入。
https://stackoverflow.com/questions/22615512
复制相似问题