0

如果我使用以下内容,则不会出现背景。

background: url('Background.jpg') 覆盖不重复中心;

如果我使用谨慎的背景属性,背景会正确显示。

background-image: url('Background.jpg');
background-size: cover;
background-repeat: no-repeat;
background-position: center;

它们不相等吗?我错过了一些明显的东西吗?最终我需要将多个图像分层,所以我需要让背景语句起作用。

Firefox 24.0 或 Chrome 浏览器中的相同结果没有任何区别。

4

1 回答 1

3

使用 CSS3背景速记时,您必须使用 abackground-positionbackground-size属性分开;改为使用:/

background: url('Background.jpg') no-repeat center / cover;

示例:http: //jsfiddle.net/fqhmh/

于 2013-10-02T23:33:40.610 回答