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?

More than 5 years have passed since last update.

scss import使い方

0
Posted at

importの使い方について

importとは作業ファイルから別のファイルを読み込む際に使用する

変数back-colorを定義しているファイルを呼び出したい時

//ファイル名 _variable.scss
$back-color: #ffffff;

変数$back-colorを呼び出す

//ファイル名 stylesheet.scss
@import 'variable'; //_(アンダーバー)と拡張子は省略可能

.top-page{
  background-color:$back-color;
}

これで使えるようになる
importファイルは名前のファイル名の先頭には**「_(アンダーバー)」**をつける必要がある

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?