标签归档:继承

JS面向对象编程与对象继承实现

一、对象的创建
1、工厂方法(函数声明):

function createUser(name) {
    const user = {
        name,
        sayName: function() {
            console.log(this.name);
        }
    }
    return user;
}
const user = createUser('Johnson');
user.sayName();
// -> Johnson

继续阅读

发表在 JavaScript | 标签为 , , , , , | JS面向对象编程与对象继承实现已关闭评论

CSS中可继承/不可继承的样式属性

可以继承的样式属性:font、font-style、font-variant、font-weight、font-size、font-family、line-height、color、letter-spacing、word-spacing、white-space、text-align、text-indent、direction、visibility、cursor、list-style、list-style-type、list-style-position、list-style-image、border-collapse。
其它样式属性均不可以继承。 继续阅读

发表在 CSS | 标签为 , , , | CSS中可继承/不可继承的样式属性已关闭评论