I want to point out that web browsers like chrome, opera, firefox use a specific css file and browsers like IE (from version 7 to 10) using other css files.
How can I define this?
Thank you all for your help! Merry Christmas!
You can use conditional IE comments, such as:
<!--[if IE]> According to the conditional comment this is IE<br /> <![endif]-->
So you can use something like this:
<head> <link href="styles.css" rel="stylesheet" type="text/css" /> <!--[if lte IE 10]> <link href="iestyles.css" rel="stylesheet" type="text/css" /> <![endif]--> </head>
You can learn more about them here.
Source: https://habr.com/ru/post/1209807/More articles:fail2ban apache-auth filter does not detect failed passwords - apacheHow to call the area method using the button displayed in ui-grid - in Angular js - javascriptImport many javascript files into a directory in Ember-CLI - ember.jsRead the text file with emoji and print it - cIntel MKL bug with Gaussian fitting in Python? - pythonWhat happened to triggerOnce in Waypoints 3.0? - jquery-waypointsusing the same chrome profile (session) for different instances of ChromeDriver - c #Is there a way to limit the number of methods in the main dex file when using the MultiDex function in Android Studio - androidMasking user input in python with asterisks - pythonStatic Initialization Lock Order - javaAll Articles