摘要:
//安装 npm install -g caniuse-cmd // terminal 查询 caniuse * 阅读全文
摘要:
//命令行 npm config set registry https://registry.npm.taobao.org //验证:如果返回https://registry.npm.taobao.org,说明镜像配置成功。 npm config get registry 阅读全文
摘要:
sudo npm i -D sass sass-loader 阅读全文
摘要:
1 <!DOCTYPE html> <!--H5标准声明,使用 HTML5 doctype,不区分大小写--> 2 <head lang=”en”> <!--标准的 lang 属性写法--> 3 <meta charset=’utf-8′> <!--声明文档使用的字符编码--> 4 <meta ht 阅读全文
摘要:
1. for…in是遍历数组、对象的key; let arr = [1, 2, 3]; for (let i in arr) { console.log(i) //0,1,2 获得数组所在第几位 } let obj = { user: 'Ian', gender: 'male', }; for (l 阅读全文
摘要:
/* 偶数行背景使用样式: */ table tr:nth-child(even){ background:cadetblue; } /* 奇数行背景使用样式: */ table tr:nth-child(odd){ background:darkslategray; } /* 偶数行背景使用样式: 阅读全文
摘要:
table{ table-layout:fixed; /* 只有定义了表格的布局算法为fixed,下面td的定义才能起作用。 */ } td{ white-space:nowrap;/* 文本不会换行,文本会在在同一行上继续,直到遇到 <br> 标签为止 */ overflow:hidden;/* 阅读全文