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.

enter image description here

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

Popular posts from this blog

testing - Detect whether test has failed within fixture -

AbotX : How do you create a parallel crawler that stays on and can be added to at run time from new requests -

android - Create single AAR file from multiple modules using Gradle -