摘要: 1 <div class="box" id="box"> 2 垂直居中 3 </div> /* 公共样式 */ 1 html, 2 body { 3 overflow: hidden; 4 height: 100%; 5 } 6 7 .box { 8 line-height: 48px; 9 box 阅读全文
posted @ 2020-07-08 16:27 爱迪西 阅读(360) 评论(0) 推荐(0)
摘要: 1 function Person() { 2 this.name = 'zs'; 3 } 4 function Zs() { 5 this.age = 20 6 } 7 Zs.prototype = new Person() 8 console.log(Zs.name) 阅读全文
posted @ 2020-06-28 09:54 爱迪西 阅读(76) 评论(0) 推荐(0)