LoginSignup
3
3

More than 5 years have passed since last update.

IE11で擬似要素をtable-cellにすると文字スタイルが反映されなくなる問題(未解決)

Last updated at Posted at 2016-01-25

擬似要素にvertical-alignを指定したい関係でtable-cellを指定したところ現象を確認。
IE11ではなんでかフォントサイズとか文字色が反映されない。IE9とかIE8では大丈夫なのに。

概要

sass
.outer {
    display:table;
}
.outer:before {
    content: "FUGA";
    display:table-cell;
    color:red;          // 反映されない
    font-size:36px;     // 反映されない
}

確認DEMO

Chrome

correct.png

IE11

wrong.png

直し方がわからないけどとりいそぎ再現したところまで。

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