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

sql - invalid in the select list because it is not contained in either an aggregate function -

Angularjs unit testing - ng-disabled not working when adding text to textarea -

How to start daemon on android by adb -