background-size使用时的注意点
Posted hahaha222
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了background-size使用时的注意点相关的知识,希望对你有一定的参考价值。
background-size要写在background-image后面,否则background-size不会生效
.comment .clist .item code { background-size: 0.42rem; background: url(/img/zan1.png) no-repeat; }
这样写,background-size是不生效的
必须这样写:
.comment .clist .item code { background: url(/img/zan1.png) no-repeat; background-size: 0.42rem; }
如果一个后面的一个样式修改了background-image,则background-size也要一起修改,否则原先设置的background-size会失效
比如,原先的样式如下:
.comment .clist .item code { background: url(/img/zan1.png) no-repeat; background-size: 0.42rem; }
现在有个操作修改了background-image的值
.comment .clist .item code { background: url(/img/zan2.png) no-repeat; }
则原先设置的background-size会失效,需要重新设置
.comment .clist .item code { background: url(/img/zan2.png) no-repeat; background-size: 0.42rem; }
以上是关于background-size使用时的注意点的主要内容,如果未能解决你的问题,请参考以下文章