手机端浏览器适配,background 背景平铺 ,有的出不来

.mobilePage .report {
        background: url(../images/mobile-report.png) repeat;
        background-size: 100% ;/* 老手机的浏览器上可能出不来背景平铺的效果*/
color: #fff; }

.mobilePage .report { background: url(../images/mobile-report.png) repeat; background-size: 100% 1px; /* */ color: #fff; }

垂直平铺在手机上 ,有的不会平铺,因为

background-size 的参数问题,可能,rem的值过小,可能没写 垂直方向的大小
原文地址:https://www.cnblogs.com/yang-C-J/p/8134500.html