0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

CSS, SCSSのスコープに関するメモ

Last updated at Posted at 2023-12-16

メモ書き程度に記す。
CSS, SCSSを利用する上で気を付けておくべき記法。

1. 配下すべてに適用

parent要素以下のelement要素すべてに適用させる。子も孫もひ孫も。

style1.scss
.parent{
    .element{
        hoge: 100;
    }
/* もしくは */
    & .element{
        hoge: 100;
    }
}

↓コンパイル結果

style1.css
.parent .element{
    hoge: 100;
}

2. 子のみに適用

CSS, SCSSで>をつけると子のelement要素のみに適用される。孫のelement要素には適用されない。

style2.scss
.parent{
    > .element{
        hoge: 100;
    }
/* もしくは */
.parent{
    & > .element{
        hoge: 100;
    }
}

↓コンパイル結果

style2.css
.parent > .element{
    hoge: 100;
}

3. 複数クラスを持つクラスの一部に適用

CSSでピリオドで続けて記載すると、複数クラスを持つクラスの一部に適用できる。SCSSでは、アンパサンドを使ってスペースを入れずに記載する。

style3.scss
.parent{
    .element{
        &.second-child{
            hoge: 100;
        }
    }
}

↓コンパイル結果

style3.css
.parent .element.second-child{
    hoge: 100;
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?