How to download css only for Safari?

How to download css file for Safari browser only? I usually use only this (without javascript)

<!--[if IE 8]> <link href="ie8.css" rel="stylesheet" type="text/css" /> <![endif]--> 

for Internet Explorer 8. Thanks

+4
source share
3 answers

I did not see the need for age (e.g. Safari 2). Ask a new question about the actual problem you are facing, and someone will probably tell you how to fix it with nothing but redundant CSS or less.

+2
source

The real simple bit of PHP. You can also become an alternative to ASP:

 <?php $browser = get_browser(); if(strtolower($browser->browser) == 'safari') { echo '<link href="safari.css" rel="stylesheet" type="text/css" />'; } ?> 
+6
source

Check out the CSS Browser Selection Plugin . It is very easy to implement and use, just write some special rules in your CSS, no extra stylesheets or anything else. I use it and it works great!

Hope this helps :)

+1
source

Source: https://habr.com/ru/post/1313484/


All Articles