Solution 1: Use conditional import in HTML document, such as inserting the following code in HEAD: Copy code The code is as follows:<!--[if IE 6]> <link rel="stylesheet" href="ie.css" type="text/css" /> <![endif]--> <!--[if IE]> <link type="text/css" media="screen" rel="stylesheet" href="js/colorbox-custom-ie.css" title="Cleanity" /> <![endif]--> Solution 2: Use conditional import at the beginning of the CSS document, as shown in the following code: Copy code The code is as follows:[if SafMob] @import('iphone.css'); [if !SafMob] @import('non-iphone.css'); The order in which the browser loads CSS: 1. Load the HTML page specified by the URL 2. Parsing HTML 3. Remotely obtain the css file referenced by the link tag 4. Load and execute the obtained css file. When encountering the code @import url("xx.css"), xx.css will be obtained remotely. 5. Load and execute xx.css You can import up to 31 CSS files through @import. Since each remote retrieval of a CSS file will generate an http link, it is time-consuming, so it is best to use @import as little as possible. 31. I don’t think any project will use so many. |
<<: Hbase installation and configuration tutorial under Linux
>>: If I change a property randomly in Vue data, will the view be updated?
The <tfoot> tag is used to define the style...
The following introduces the commonly used head s...
Large Text Data Types in Oracle Clob long text ty...
This article shares the specific code of JavaScri...
character Decimal Character Number Entity Name --...
Mainly discuss its structure and some important pr...
Adding the rel="nofollow" attribute to ...
This article shares the specific code for using j...
As shown below: 1. ssh -v -p [port number] [user ...
At the beginning of this article, I would like to ...
Basically all e-commerce projects have the functi...
I just want to make a small thing that combines w...
1: masterha_check_repl replica set error replicat...
Table of contents Problem Overview Problem Reprod...
Today I downloaded mysql-5.7.18-winx64.zip from t...