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?》
本文深入解析CSS中background:none与background:transparent的区别,以及它们与background:red的对比。详细阐述了这些属性如何影响网页元素的背景颜色、图像和其他相关属性。

492

被折叠的 条评论
为什么被折叠?



