Replies: 1 comment
-
It's not clear what you're trying to do here. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Given the following Less, there is no way to dereference the value of
@inner-background
.Although we can dereference top-level properties, e.g.
.tag(red)[color]
, we cannot dereference variables or nested structure. All of the following are invalid:.tag(red)[>span background]
.tag(red)[>span.background]
.tag(red).span[background]
.tag(red).span()[background]
However, as an interesting aside,
.tag(red)[@inner-background]
is valid.Beta Was this translation helpful? Give feedback.
All reactions