JavaScript
47
Вклад в тег
%placeholder {
font-weight: bold;
}
a%placeholder {
text-decoration: none;
}
.item {
@extend %placeholder
}
.item {
font-weight: bold;
}
a.item {
text-decoration: none;
}
.placeholder {
font-weight: bold;
}
a.placeholder {
text-decoration: none;
}
.item {
@extend .placeholder
}
.placeholder, .item {
font-weight: bold;
}
a.placeholder, a.item {
text-decoration: none;
}