Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Box-shadow is not working in IE11

  • This topic is empty.
Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #239248
    tirengarfio
    Participant

    Hi,

    I have this site http://www.thermalcream.com

    The menu bar shuld show a shadow but it is not being shown at IE 11

    No problem using FF or Chrome.

    These are the lines I have added:

    -webkit-box-shadow: 10px 15px 34px -29px rgba(0,0,0,0.75);
      -moz-box-shadow: 10px 15px 34px -29px rgba(0,0,0,0.75);
      box-shadow: 10px 15px 34px -29px rgba(0,0,0,0.75);
    
    #239249
    tomnoble92
    Participant

    Add -ms- box-shadow to the code. That may work Box-Shadow does seem supported in IE11.

    Tom

    #239251
    Shikkediel
    Participant

    I’m seeing it fine myself. A prefix shouldn’t be needed…

    http://caniuse.com/#feat=css-boxshadow

    #239316
    tirengarfio
    Participant

    I have added -ms-box-shadow but I don’t get the box-shadow at IE 11..

    Screenshot from 2016 03 16 17 15 30

    #239347
    Shikkediel
    Participant

    What can I say, it’s there in the CSS as well. Maybe just slightly less pronounced in effect compared to Firefox for example.

    #239354
    bearhead
    Participant

    Test in in IE 11 on windows 7. The shadow is definitely there, it’s just faint. The way it’s coded seems weird to me: box-shadow: 10px 15px 34px -29px – surely that could be written more simply. I think that’s why it’s not rendering like you expect it to.

    #298385
    maria Violeta
    Participant

    The problem is the negative number, it would not work on IE, try writing the shadow only with positive numbers.

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Box-shadow is not working in IE11’ is closed to new replies.