3
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.

CSSで@charsetを指定するとエラーになる場合

Last updated at Posted at 2018-12-12

原因

1行目にコメントを書いていたためでした。

文字コードはCSSの1行目に記述する必要があるようです。最初に「このCSSの文字コードは◯◯です」と指定してあげないといけないわけですね。

解決法

コメントを削除して@charsetを1行目に書くだけです。

コメントを残す必要があるなら

@charset "UTF-8";    /* コメント */

というように書くとかですね。

3
0
1

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
3
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?