我有这个:
background-size: cover;
background-position: 50% 50%;
background-repeat: no-repeat;
我将position
和repeat
折叠为background
,但最终结果会导致覆盖background-size属性:
background-size: cover;
background: no-repeat 50% 50%;
是否可以将文件夹背景大小:覆盖到速记中?我尝试background: no-repeat cover 50% 50%
,但这无效。
答案 0 :(得分:1)
我认为你不能在速记中加入background-size
,但在简写陈述之后应该没有问题。
编辑:此answer确认您可以。
background: no-repeat 50% 50% etc;
background-size: cover;
简写语句会覆盖所有背景语句,甚至包括未在速记语句中包含(或不包含)的语句。