美文网首页
微信小程序 - 14.样式导入

微信小程序 - 14.样式导入

作者: GiottoYLY | 来源:发表于2020-03-17 16:02 被阅读0次
    1. 项目新增一个styles文件夹 , 里边新增common.wxss文件(公共的样式文件)
    view{
        color: turquoise;
        font-size: 100px;
    }
    
    image.png
    1. 部分页面引入样式

    wxss页面

    /* 
    1 引入的代码是通过@import来引入
    2 路径只能写相对路径
    */
    @import "../../../styles/common.wxss";
    

    wxml文件

    <view >page</view>
    
    image.png

    相关文章

      网友评论

          本文标题:微信小程序 - 14.样式导入

          本文链接:https://www.haomeiwen.com/subject/yaptyhtx.html