我可以将背景大小:封面插入背景速记吗?

时间:2015-06-15 08:54:50

标签: css

我有这个:

background-size: cover;
background-position: 50% 50%;
background-repeat: no-repeat;

我将positionrepeat折叠为background,但最终结果会导致覆盖background-size属性:

background-size: cover;
background: no-repeat 50% 50%;

是否可以将文件夹背景大小:覆盖到速记中?我尝试background: no-repeat cover 50% 50%,但这无效。

1 个答案:

答案 0 :(得分:1)

我认为你不能在速记中加入background-size,但在简写陈述之后应该没有问题。

编辑:此answer确认您可以。

background: no-repeat 50% 50% etc;
background-size: cover;

简写语句会覆盖所有背景语句,甚至包括未在速记语句中包含(或不包含)的语句。