sass和less对比 | sass | less |
---|---|---|
变量声明 | $xxx: #F00; | @xxx: #F00; |
变量引用 | background: $xxx; | background: @xxx; |
嵌套 | #content { article { h1 { color: #333 } p { margin-bottom: 1.4em } } aside { background-color: #EEE } } |
sass和less对比 | sass | less |
---|---|---|
变量声明 | $xxx: #F00; | @xxx: #F00; |
变量引用 | background: $xxx; | background: @xxx; |
嵌套 | #content { article { h1 { color: #333 } p { margin-bottom: 1.4em } } aside { background-color: #EEE } } |
本文标题:使用sass和less
本文链接:https://www.haomeiwen.com/subject/yxpyqctx.html
网友评论