Different CSS for each browser?

前端 未结 3 1023
时光取名叫无心
时光取名叫无心 2020-11-29 08:33

Is there a way to load a different CSS file for a specific browser?

like (poor pseudo code):

if firefox


        
相关标签:
3条回答
  • 2020-11-29 09:08

    Ideal solution you want does not exist:

    Unfortunately, a cross browser solution does not exist IF you are trying to do it on the HTML itself. However, it will work for most versions of IE. Like such:

    <!--[if IE]>
    <link rel="stylesheet" type="text/css" href="includes/myIEGeneralStyle.css" />
    <![endif]-->
    <!--[if IE 6]>
    <link rel="stylesheet" type="text/css" href="includes/myIE6Style.css" />
    <![endif]-->
    <!--[if IE 7]>
    <link rel="stylesheet" type="text/css" href="includes/myIE7Style.css" />
    <![endif]-->
    <!--[if IE 8]>
    <link rel="stylesheet" type="text/css" href="includes/myIE8Style.css" />
    <![endif]-->
    

    So the best solution:

    How about a Javascript solution like such: Browser Detection. Read a bit about this class to better clarify, what that file is basically doing is simply the concept like such:

    var browser = navigator.userAgent.toLowerCase().indexOf('chrome') > -1 ? 'chrome' : 'other';
    

    Obviously, it does more than just detect type of browser. In fact, it knows the version, OS, and much more detail that you can read about in that link. But, it does go and check all the types of browsers by replacing 'chrome' with 'mozilla', 'explorer' and so on...

    Then to add your css files, just follow up with conditional statements like so:

    if (BrowserDetect.browser.indexOf("chrome")>-1) {
    document.write('<'+'link rel="stylesheet" href="../component/chromeCSSStyles.css" />');
    } else if (BrowserDetect.browser.indexOf("mozilla")>-1) {
        document.write('<'+'link rel="stylesheet" href="../component/mozillaStyles.css" />');
    } else if (BrowserDetect.browser.indexOf("explorer")>-1) {
        document.write('<'+'link rel="stylesheet" href="../component/explorerStyles.css" />');
    }
    

    Good luck and hope this helps!

    0 讨论(0)
  • 2020-11-29 09:25

    you can do this at the server end.

    if(Request.UserAgent is chrome){        
        //here output chrome stylesheet
    }
    
    0 讨论(0)
  • 2020-11-29 09:27

    You can use conditional comments to target IE browsers. Look at this: http://css-tricks.com/how-to-create-an-ie-only-stylesheet/. To target firefox you can check this answer: https://stackoverflow.com/a/953491/1941910. But I think there's no need to target firefox, chrome or safari, they all do a good job applying CSS.

    0 讨论(0)
提交回复
热议问题