微信小程序 wxss 背景图 本地资源图片无法通过 WXSS 获取,可以使用网络图片,或者 base64

pages/user/index.wxss 中的本地资源图片无法通过 WXSS 获取,可以使用网络图片,或者 base64,或者使用标签。请参考文档:https://developers.weixin.qq.com/miniprogram/dev/framework/
  15 |   background-position: center right;
  16 |   background-size: auto 100%;
> 17 |   background-image: url('/images/user-bg.png');
     |                    ^
  18 | }
  19 | 
  20 | .user-header .user-header-cont {

 

不能在小程序的css文件引入图片

可以写成内联到view标签里的css

你可能感兴趣的:(小程序)