摘要:
1、基于绝对定位的解决方案 2、基于视口的解决方案 3、基于flexbox的解决方案 请注意,当我们使用flexbox时,margin:auto不只是在水平方向上居中,垂直方向上也是如此。 阅读全文
摘要:
function Person () { } Person.prototype.name = 'Alan'; Person.prototype.age = 26; Person.prototype.job = 'Software Engineer'; Person.prototype.sayName = function () { alert(this.name); } var pe... 阅读全文