32
16

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 3 years have passed since last update.

【IE11】先頭にハイフン2つのclass名はCSSが効かない

Last updated at Posted at 2020-06-02

表題の通りです。

class名の先頭にハイフンはひとつまで。
マルチクラスでハイフン2つ指定すると、モダンブラウザでは指定どおり表示されますが、
IEでは無効なので、ご注意ください。

##NG class名🙅

先頭にハイフン2つですと、IEでCSSが効きません。

css
<div class="hoge --fuga">

##OK class名🙆🏻‍♂️

先頭にアンダースコア(_)、ハイフン1つ(-)ですとIEでバッチリCSSが効きます。

css
<div class="hoge -fuga">

<div class="hoge _fuga">

##CSS仕様について

W3CによるとIEの動作の方が正しいようでした。知らなかったです。

識別子は、数字、2つのハイフン、ハイフンの直後の数字で開始できない。

構文と基本データ型
https://momdo.github.io/css2/syndata.html#value-def-identifier

32
16
2

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
32
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?