どう説明していいか分からないですが。
.test {
background-color: #fff;
}
p.test {
background-color: #f00;
}
を Sass の入れ子でどう書くか
.test {
background-color: #fff;
@at-root {
p#{&} {
background-color: #f00;
}
}
}
で多分大丈夫かと。
Go to list of users who liked
More than 5 years have passed since last update.
どう説明していいか分からないですが。
.test {
background-color: #fff;
}
p.test {
background-color: #f00;
}
を Sass の入れ子でどう書くか
.test {
background-color: #fff;
@at-root {
p#{&} {
background-color: #f00;
}
}
}
で多分大丈夫かと。
Register as a new user and use Qiita more conveniently
Go to list of users who liked