摘要: 函数名称: getQueryVariable(variable) { let query = window.location.search.substring(1); //=> ?po=howto let vars = query.split('&'); //=> vars[0] po=howto 阅读全文
posted @ 2018-09-18 16:47 EllenBaby 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 01.块状元素单行文本超出显示省略号: ul li{ width: 180px; text-overflow: ellipsis; white-space: nowrap;/*禁止自动换行*/ overflow: hidden; } 02.td内的文字超出显示省略号: table{ table-la 阅读全文
posted @ 2018-09-18 16:42 EllenBaby 阅读(454) 评论(0) 推荐(0) 编辑