参见英文答案 > Purpose of asterisk before a CSS property 6个
我看到了这段代码.有人能告诉我背景颜色之前的*是什么意思吗?在现代浏览器中它是否重要?请注意,这是Bootstrap 2.3中使用的CSS.当与渐变一起使用时,背景重复的目的是什么?这需要吗?
background-color: #5bb75b;
*background-color: #51a351;
background-image: linear-gradient(to bottom,#62c462,#51a351);
background-repeat: repeat-x;
最佳答案
*背景问题:
原文链接:https://www.f2er.com/html/425472.html.classABC {
background: #000; /* modern browsers */
*background: #333; /* IE 7 and below */
_background: #FFF; /* IE6 exclusively */
}
它用于较旧的IE版本.
背景重复问题:
它在这里没有特别的用处.
如您所知,它沿x轴重复图像.也许有些图片应用于需要它的元素/子元素.