background: #27AE61 url("../images/banner.png") no-repeat scroll center center / cover;
上面的CSS在firefox,google chrome和Internet Explorer中正常运行,但在safari 5.7.1上没有。为什么?解决方案是什么?
答案 0 :(得分:0)
尝试用长篇大论而不是简写方式编写css,如下所示:
background-color: #27AE61;
background-image: url("../images/banner.png");
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
看起来 Safari 的上述版本不支持背景的速记css。