Click here to Skip to main content
15,900,461 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Is there any solution or complete solution to cross browser compatibility issues, can any one help me please
Posted

Is there any universal solution? No. Every browser renders differently, and every one interprets standards (and the immaturity of the standards doesn't help).

So your compatibility issues have to be handled on a case-by-case basis for individual browsers. We can't really help you, because you haven't said what you need help with. There is no universal "set this flag" to make it all look the same. How you take care of the issues depends on what specifically you are doing.
 
Share this answer
 
Comments
.NetDeveloper09 22-Nov-13 14:40pm    
this is the css style i want to implement to my login box but in firefox its ok however in google chrome and internet explorer 10 its not showing on exact position.

/*##### Login box #####*/
/*#########################*/

.login_box { position:absolute; top:0px; left:640px; height:96px; width:300px; background-color:#f10; font:6pt; border-radius:5px; }
.userid_lbl { position:absolute; top:8px; left:8px; height:25px; width:100px; text-align:right; color:White;}
.userid_tbx { position:absolute; top:8px; left:111px; height:16px; width:150px; text-align:left; border-radius:5px; }
.userpassword_lbl { position:absolute; top:28px; left:8px; height:25px; width:100px; text-align:right; color:White; }
.userpassword_tbx { position:absolute; top:28px; left:111px; height:16px; width:150px; text-align:left; border-radius:5px; }
.login_btn { position:absolute; top:47px; left:81px; height:25px; width:100px; text-align:center; }
.rememberme { position:absolute; top:72px; left:112px; height:25px; width:200px; text-align:left; color:white; }
i solved it myself thanks for help everyone
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900