css - background image wont show in most recent version of ie -


body {    background-position: right;    color: #ff7f27;    background-color: transparent;     background-image url('../cityage_background3.png');    background-size: 1386px 861px;    background-repeat: no-repeat;    background-attachment: fixed; } 

the link n example. know real link works because show in cchrome , firefox. why isnt background image showing in internet explorer.

your error here:

background-image url('../cityage_background3.png'); 

it should be:

background-image: url('../cityage_background3.png'); 

you missing :

edit* ie not errors.


Comments

Popular posts from this blog

java - Could not locate OpenAL library -

c++ - Delete matches in OpenCV (Keypoints and descriptors) -

sorting - opencl Bitonic sort with 64 bits keys -