All modern browsers support CSS nesting (Can I Use), yet VSCode doesn't currently have CSS nesting syntax highlighting.
This extension provides the needed syntax highlighting and will be available until the new syntax rules merge into VSCode's core.
To learn more about CSS Nesting, see MDN.
.example {
text-decoration: none;
&:hover {
text-decoration: underline;
}
}