上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 24 下一页
摘要: 有如下代码 <p class="text"> <span>H</span> <span>e</span> <span>l</span> <span>l</span> <span>o</span> </p> .text { display: block; text-align: center; fon 阅读全文
posted @ 2021-06-08 11:59 Syinho 阅读(502) 评论(0) 推荐(0) 编辑
摘要: 水平格式化有七个属性,分别是:margin-left,border-left,padding-left,width,padding-right,border-right,margin-right七个。其中只有margin-left,width,margin-right三个属性允许被设置为auto。 阅读全文
posted @ 2021-06-08 09:42 Syinho 阅读(213) 评论(0) 推荐(0) 编辑
摘要: line-height与font-size之间的差值就是行间距。行间距除以二,将行间距的一半分别应用到内容区的顶部和底部。其结果就是该元素的行内框。 假设有以下样式: p{ font-size:16px; line-height:20px; } 那么行间距就是4px,字体上下分别延展2px的空白。如 阅读全文
posted @ 2021-06-08 09:16 Syinho 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 今天写字符打印DEMO时注意到了ch这个单位,经查询它是等宽字体相对于数字0的大小,1ch就是0的宽度。3ch宽的div就只能装下三个0. 等宽字体 等宽字体(monospaced font)是指字符宽度相同的电脑字体。东亚语言中,方块字基本上都作为等宽字体处理,如各个地区的汉字、日语假名的全形字符 阅读全文
posted @ 2021-06-06 18:38 Syinho 阅读(522) 评论(0) 推荐(0) 编辑
摘要: ctrl+h打开匹配 选择正则 写下正则表达式,并用括号包裹起来 替换时用$1代替匹配项 阅读全文
posted @ 2021-06-06 18:16 Syinho 阅读(400) 评论(0) 推荐(0) 编辑
摘要: 错误详情 Unary operator '++' used no-plusplus 当使用++的时候Eslint报错 报错原因 Eslint禁止使用++与--,因为一元运算符会自动插入分号,如果一元运算符前有空格,可能会引发歧义。(但经测试同样情况下没有造成歧义) (详见disallow the u 阅读全文
posted @ 2021-03-14 20:42 Syinho 阅读(1047) 评论(0) 推荐(0) 编辑
摘要: 报错详情 error Parsing error: 'import' and 'export' may only appear at the top level 报错代码 webpack.config.js global.document.getElementById('btn').addEvent 阅读全文
posted @ 2021-03-11 17:52 Syinho 阅读(2209) 评论(0) 推荐(0) 编辑
摘要: 报错详情 WARNING in asset size limit: The following asset(s) exceed the recommended size limit (244 KiB). This can impact web performance. Assets: images/ 阅读全文
posted @ 2021-03-08 11:53 Syinho 阅读(4189) 评论(0) 推荐(0) 编辑
摘要: 辨别this的不同 const person1 = { name: 'Nicholas', age: 74, job: 'engineer', getDetail: function () { console.log(`${this.name} is a ${this.job} and is ${t 阅读全文
posted @ 2021-02-05 11:31 Syinho 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 错误详情 在使用babel-loader做js兼容性处理时,下载了如下三个包: "@babel/core": "^7.8.4", "@babel/preset-env": "^7.8.4", "babel-loader": "^8.0.6", webpack.config.js配置如下: { tes 阅读全文
posted @ 2021-02-03 22:47 Syinho 阅读(742) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 24 下一页