Skip to content

Instantly share code, notes, and snippets.

@bugkiwi
Last active April 22, 2017 08:07
Show Gist options
  • Select an option

  • Save bugkiwi/f315b4d3f1c68eb0f77c001b86dacbe6 to your computer and use it in GitHub Desktop.

Select an option

Save bugkiwi/f315b4d3f1c68eb0f77c001b86dacbe6 to your computer and use it in GitHub Desktop.
less在子元素中解析数组
```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