为了账号安全,请及时绑定邮箱和手机立即绑定

为什么用position/size会错误呢,把这2项分开写就可以...

background-position:0 0/70% 50%,right bottom/50% 35%;
    background-repeat:no-repeat;


正在回答

3 回答

你把 background-size 属性值写在了 background-position 里,当然不对。

如果要分开设置,类似这样:

background-position:left top, right bottom;
background-size:225px 70px,150px 60px;

如果要一起设置,要在 background 中进行设置:

background:url(http://static.mukewang.com/static/img/logo_index.png) no-repeat left top/225px 70px, 
       url(http://static.mukewang.com/static/img/logo_index.png) no-repeat right bottom/150px 60px;


0 回复 有任何疑惑可以回复我~

background:url(http://static.mukewang.com/static/img/logo_index.png) no-repeat left top/200px 80px

               url(http://static.mukewang.com/static/img/logo_index.png) no-repeat right bottom/150px 55px;

用position/size是针对语法缩写的,

background-position:0 0/70% 50%,right bottom/50% 35%; 

 background-repeat:no-repeat; 是语法拆解形式 针对单独属性的,所以不同属性的值不可以一起缩写。




1 回复 有任何疑惑可以回复我~

用“/”分割后的值是background-size的,怎么能写在position里,要不直接用background复合属性写,要不分开background-position和background-size写

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么用position/size会错误呢,把这2项分开写就可以...

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信