关于vue项目打包成apk渐变属性失效的问题。

152 阅读1分钟

解决方法,webkit内核前后加上这段代码

  /*! autoprefixer: off */
  background: -webkit-linear-gradient(top, #6f9fe7 0%, #3e4dda 100%) ;
  /* autoprefixer: on */
  background:-moz-linear-gradient(top, #6f9fe7 0%, #3e4dda 100%);
  background:-o-linear-gradient(top, #6f9fe7 0%, #3e4dda 100%);
  background:linear-gradient(top, #6f9fe7 0%, #3e4dda 100%);```