Need Solution for browser compatibility issue

萝らか妹 提交于 2019-12-08 14:23:56

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!