Text Shadow in IE 11 not working

前端 未结 2 578
执念已碎
执念已碎 2020-12-22 04:07

The text in this example of text-shadow doesn\'t display in IE 11, but does in FF & Chrome.

http://codepen.io/maxnguyen/pen/

According to caniuse.com IE

相关标签:
2条回答
  • 2020-12-22 04:50

    This happens because IE wants you to have a base color on the text. You also use text-shadow to define the base color.

    You can change this so you also define the color property.

    #flash {
      display: inline-block;
      text-shadow: #bbb 0 0 1px, #fff 0 -1px 2px, #fff 0 -3px 2px, rgba(0,0,0,0.8) 0 30px 25px;
      transition: margin-left 0.3s cubic-bezier(0, 1, 0, 1);
    }
    

    Changes to

    #flash {
      display: inline-block;
      color: #bbb;
      text-shadow: #fff 0 -1px 2px, #fff 0 -3px 2px, rgba(0,0,0,0.8) 0 30px 25px;
      transition: margin-left 0.3s cubic-bezier(0, 1, 0, 1);
    }
    

    Where your first text-shadow is now assigned to the color property.

    Why does this happen?

    Well i'm not certain if this happend in the previous versions of IE. However as you can see at the MS text-shadow generator there is a property that is not supported by chrome and FF; spread distance. This might suggest that IE does not use the same methods as chrome and FF do.
    However it seems logic to give a base color before give a shadow to something.

    Addition notes

    I suggest to also let -webkit- support everything. For example transition in chrome is only supported by -webkit-transition.

    jsFiddle

    0 讨论(0)
  • 2020-12-22 05:04

    this a very tricky issue where you probabilly could not find any answer, if you open a simple html files to ie10 or ie11 this will show all your text-shadow but you intrigated apps does not support the text-shadow even it shows some error means red line under the text-shadow text.

    You just need to change the meta tags for this...use these

    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge"> // ie supports
    <meta name="viewport" content="width=device-width, initial-scale=1">// for responsive
    
    0 讨论(0)
提交回复
热议问题