filmov
tv
#6 Placeholder Selectors | SCSS | Frontend | Take it easy #shorts

Показать описание
#CSS #SCSS #Frontend #shorts
Codepen
Guide
Application
```scss
.t {
font-weight: bold;
}
.alert {
@extend .t;
}
```
```scss
%t {
font-weight: bold;
}
.alert {
@extend %t;
color: red;
}
.primary {
@extend %t;
color: blue;
}
```
Codepen
Guide
Application
```scss
.t {
font-weight: bold;
}
.alert {
@extend .t;
}
```
```scss
%t {
font-weight: bold;
}
.alert {
@extend %t;
color: red;
}
.primary {
@extend %t;
color: blue;
}
```