Within my code, there is a block-border class containing two block-content classes. Specifically, I am working on compatibility with IE9 and higher.
I am seeking assistance in defining the structure using Less as shown below:
.block-border {
&.admin > .block-content {
}
}
My goal is to define xxx for the first block-content class within the block-border, yyy for the second block-content class, and zzz for the last block-content class inside the same border.
The challenge lies in how to properly define the first and last elements using Less. While I have successfully defined the base block-content, the others remain unclear.