Sass – Notes
coding
Concatenating Selectors TogetherFor concatenating selectors together when nesting, you need to use (&) to specify the parent selector..class { margin:20px; &:hover { color:yellow; } }p { margin: 2em auto; > a { color: red; } &:before { content: “”; } &:after { content: “* * *”; } }Target elements inside an elementYou just need to […]
