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
Post a Comment