html - Overriding inline style not working in Edge -
a site have created behaving strangely in ms edge browser (and ie too): http://bristolenergynetwork.org/
on element header#fancy-header stylesheet css of background-size: intial !important should overriding inline style of background-size: cover. edge developer tools show latter crossed out, suggesting being overridden not banner should appear below logo , menu on chrome. if uncheck crossed out style site looks should suggesting override not taking place developer tools suggests.
is bug in edge or else causing behaviour? thanks!
try changing property inherit, works me.
body.home header#fancy-header { background-size: inherit !important; }
you can find different background size property @ http://www.w3schools.com/cssref/css3_pr_background-size.asp
Comments
Post a Comment