iffiffj 发表于 2013-2-7 22:41:16

转载-CSS IE中的if语句

IE下专属CSS:
<!> <link rel="stylesheet" type="text/css" href="NOT-IE.css" /> <!>

IE 6 ONLY:
<!--> <link rel="stylesheet" type="text/css" href="IE-6-SPECIFIC.css" /> <!-->

IE 5 ONLY:
<!--> <link rel="stylesheet" type="text/css" href="IE-5-SPECIFIC.css" /> <!-->

IE 5.5 ONLY:
<!--> <link rel="stylesheet" type="text/css" href="IE-55-SPECIFIC.css" /> <!-->

IE6或更低:
<!--> <link rel="stylesheet" type="text/css" href="IE-6-OR-LOWER-SPECIFIC.css" /> <!-->

非IE:
<!> <link rel="stylesheet" type="text/css" href="REAL-STYLESHET.css" /> <!>
页: [1]
查看完整版本: 转载-CSS IE中的if语句