background: none
等价于:
background-color: initial;
background-image: none;
background-repeat: initial;
background-attachment: initial;
background-position: initial;
background: transparent
等价于:
background-color: transparent;
background-image: initial;
background-repeat: initial;
background-attachment: initial;
background-position: initial;
区别
可以认为 background: none和background: transparent没有区别。
但background: none和background: red是有区别的,background: none会把所有属性置为初始值,background: red只会把background-color变为red,保留其他属性值。
参考
《background:none vs. background:transparent what is the difference?》