背景颜色不在Safari中呈现

时间:2013-11-12 18:14:29

标签: css safari less

为什么我的背景颜色没有出现但是所有其他背景属性都在Safari中有任何原因...我使用的是LESS。

示例:

1)这不会在Safari中渲染背景颜色:

background: @lightGray url(/assets/project_title_icon.svg) no-repeat 0 0;

2)这个DOES在Safari中渲染背景颜色:

background: url(/assets/project_title_icon.svg) no-repeat 0 0;
background-color: @lightGray;

1 个答案:

答案 0 :(得分:1)

你的两个例子都应该产生同样的结果。 See this jsFiddle,但我没有野生动物园:/

这个小提琴在Safari中看起来像什么?

div {
    background: green url(http://placekitten.com/100/100) no-repeat 0 0;
    width: 200px;
    height: 200px;
}