Variables for Selectors

PHOTO EMBED

Sat Feb 22 2025 09:18:54 GMT+0000 (Coordinated Universal Time)

Saved by @Sebhart #sass

$a-tags: 'a, a:active, a:hover, a:visited';
$a-tags-hover: 'a:active, a:hover';
 
#{$a-tags} {
  color: red;
  text-decoration: none;
}
#{$a-tags-hover} {
  color: blue;
}
content_copyCOPY

https://css-tricks.com/snippets/sass/use-sass-variable-selector/