摘要: function deepClone(obj = {}){ if(typeof obj !== 'object' || obj == null){ // 不是对象和数组 或者 是null return obj } let result if(obj instanceof Array){ result 阅读全文
posted @ 2020-08-13 16:37 大海博客 阅读(72) 评论(0) 推荐(0)
摘要: 定义 相对于根元素(html)的相对长度单位 media-query 响应式 @media only screen and (max-width: 374px) { html { font-size: 86px } } @media only screen and (min-width: 375px 阅读全文
posted @ 2020-08-13 13:44 大海博客 阅读(81) 评论(0) 推荐(0)
摘要: 水平居中 inline 元素:text-align: center; block 元素:margin: auto; absolute 元素:left: 50% + margin-left负值 (必须知道子元素的宽度) 垂直居中 inline 元素:line-height的值等于height的值 (必 阅读全文
posted @ 2020-08-13 13:15 大海博客 阅读(90) 评论(0) 推荐(0)