Last active
April 22, 2017 08:07
-
-
Save bugkiwi/f315b4d3f1c68eb0f77c001b86dacbe6 to your computer and use it in GitHub Desktop.
less在子元素中解析数组
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ```less | |
| @media: ~'.ccc, .ddd'; | |
| .a, | |
| .b{ | |
| @{media} { | |
| color: red; | |
| } | |
| } | |
| // 正确的 | |
| .a, | |
| .b{ | |
| .ccc, | |
| .ddd{ | |
| color: red; | |
| } | |
| } | |
| ``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment