Tianhe Gao

css-sass

​## How do you define attribute selectors in SASS?

https://stackoverflow.com/a/69444953/12539782

```scss .bg-brand-3 { background-color: black; &[type='button']:enabled { &:hover { background-color: orange; } &:active { background-color: green; } } &[type='submit'] { // css } } ```


No notes link to this note