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.

material-iconsをローカルから読み込んで使う備忘録

0
Last updated at Posted at 2020-08-20

Material-iconをローカルで使う

アイコンデータをダウンロード

material-icons.woff2

ファイルに保存

material-icons.woff2として保存する

CSSから読み込み

material-icons
@font-face {
  font-family: Material Icons;
  font-style: normal;
  font-weight: 400;
  src: url(../font/material-icons.woff2) format('woff2');
}
.material-icons {
  font-family: Material Icons;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}

通常の使い方で

<i class="material-icons">place</i>
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?