码迷,mamicode.com
首页 > 其他好文 > 详细

stylus快速上手

时间:2019-10-06 00:24:04      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:col   xxx   line   head   pre   class   isp   限制   变量   

  • 定义变量,比如一键切换主题色

    1.创建xxx.styl文件,定义变量

$bgColor = #00bcg4

    2.在其他页面的style区域里,先引入这个xxx.styl文件

<style>
    @import ‘../../xxx.styl‘  //样式中引入样式,要在import前加@
    .header
        height:3rem
        width:.87rem
     color:$bgColor </style>
  • 层级嵌套形式的书写样式,而不必像css一样加一堆的父级限制,直接嵌进父级
    .header
      display:felx
      height:80px
      width:100px
      .header-left
        line-height:60px
               height:60px
        float:left
      .header-right
        wigth:30px
  • scoped关键字限制了这里的样式只对当前页面有效
    <style lang="stylus" scoped>

     

stylus快速上手

标签:col   xxx   line   head   pre   class   isp   限制   变量   

原文地址:https://www.cnblogs.com/VCplus/p/11625964.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!