Monday, October 4, 2010

Cross browser compatibility

Most important issue in developing web site is cross browser supporting facility.Means o/p of one page is looking different in some browser like mozila,IE7,IE8 crome,safari etc.
so developers test the web pages on different browser and create the different css file as per requirement and including in their page as example...........
<head id="head1" runat="server">
  
    <!--[if IE 8]><!-->
    <link href="../Styles/IE8.css" rel="Stylesheet" type="text/css" />
    <!--<![endif]-->

    <meta HTTP-equiv="content-type" content="text/ht-ml; char-set=utf-8" />
    <link h ref=' http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:light,regular'
        rel='style sheet' type='text/css'>
</head>
This css only working in IE 8(internet explorer 8) and same as create many css file like
IE7.CSS,   MOZ.CSS,  CROME.CSS.

NOTE---> One Thing i am notice today is that IIS(Internet Information Server) store the web page changes so on account of this it show the previous  page so avoid these think programmer have to delete the browsing history of all the web browser which are using for testing and also reset the setting of Browser. 
Thanks

No comments:

Post a Comment