摘要:
css - 文本溢出省略 单行 @mixin text_ellipsis() { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } 多行省略 @mixin text_ellipsis_n($n: 2) { displa 阅读全文
摘要:
json - 注释 我们要知道的是在json文件中用传统的注释格式(// /**/)进行注释,是不符合json规范的。 json里面有自己约定俗成的注释规范。 1、在json文件中,采用"//",其value就是添加的注释内容。 { "//": "设置起始刻度, 目的是为了是数据展示不从零起始显示, 阅读全文