css - Web pages which works fine in Firefox shows some styling issues in Chrome -
i newbie web development, in specific browser related css compatibility issues.
i have following css in home page, works fine in firefox, , can see css properties when inspect element using firebug. same css rules missing when use chrome. when inspect, can't see rules in chrome. wonder why happens. understand css rules browser dependent. confused thinking how resolve this.
please refer link see css rules.
any suggestions regarding why , how happens. useful link appreciated. in advance.
try using media query, selecting webkit specific stuff such as:
@media screen , (-webkit-min-device-pixel-ratio:0) { /* css */ } this query checks device pixel ratio in webkit. safari & chrome big browsers using webkit, not affect firefox or ie.
Comments
Post a Comment