问题
Our application is running fine in chrome browser. But in Firefox some features and screens are not working properly. So it needs to be fixed .How can i do that and what could be the solution for that?
回答1:
The best way to find out what is 'going on' is to debug the code in the browser. Firefox has a built in debugger but i prefer to use a third party debugger called Firebug.
回答2:
You should give Firebug a try as indicated in the first answer. However as far as I know you had to install it as Add-on, it is not included in the distribution.
回答3:
I think your question is a little too general. Anyway, if the compatibility issue is about CSS style, you should check whether you are using WebKit-prefixed CSS only. For example, if you are using -webkit-animation, it would only work in Chrome and Safari. Actually you should set four CSS styles: -webkit-animation, -moz-animation, -o-animation and animation to make your code work in major browsers. There are some documents about Mozilla and WebKit CSS that might help:
https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Mozilla_Extensions https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Webkit_Extensions
来源:https://stackoverflow.com/questions/28409145/need-solution-for-browser-compatibility-issue