CSS0022: background 属性 简写 方式

1,

.btnDivL .L1 {

    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../icon/L1.png');
    /* 简写 */
    background: url('../icon/L1.png') no-repeat center / 100% 100%;

}
琥珀君的博客
原文地址:https://www.cnblogs.com/eliteboy/p/14280721.html