background-position:0 0/70% 50%,right bottom/50% 35%; background-repeat:no-repeat;
你把 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;
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; 是语法拆解形式 针对单独属性的,所以不同属性的值不可以一起缩写。
用“/”分割后的值是background-size的,怎么能写在position里,要不直接用background复合属性写,要不分开background-position和background-size写