<!doctype html> <head> <link rel="stylesheet" href="style.css" type="text/css" /> </head> <body> <h2 class="style">This is a simple example of Selector Interpolation</h2> <p class="style">This is a simple example of Selector Interpolation</p> </body> </html>
.style {
color: #BF70A5;
font-style: italic;
}
@{variable}:extend(.style) {}
@variable: .selector;
lessc style.less style.css
.style,
.selector {
color: #BF70A5;
font-style: italic;
}