Код: Выделить всё
…
{ // Block started
line-height: 1.5; // Shared property.
…
.text-sm
{
font-size: 1rem;
}
.text-md
{
font-size: 2rem;
}
.text-lg
{
font-size: 3rem;
}
…
} // Block ended
Код: Выделить всё
.text-sm
{
font-size: 1rem;
line-height: 1.5;
}
.text-md
{
font-size: 2rem;
line-height: 1.5;
}
.text-lg
{
font-size: 3rem;
line-height: 1.5;
}
Есть ли способ добиться этого?
Подробнее здесь: https://stackoverflow.com/questions/793 ... in-in-less