博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CSS技巧(二):CSS hack
阅读量:5747 次
发布时间:2019-06-18

本文共 3084 字,大约阅读时间需要 10 分钟。

什么是CSS hack

CSS hack由于不同的浏览器,比如IE6,IE7,Firefox等,对CSS的解析认识不一样,因此会导致生成的页面效果不一样,得不到我们所需要的页面效果。 这个时候我们就需要针对不同的浏览器去写不同的CSS,让它能够同时兼容不同的浏览器,能在不同的浏览器中也能得到我们想要的页面效果。

 

CSS hack分类

hack主要分为CSS选择器hack、CSS属性hack、IE条件注释hack。

CSS选择器hack:比如 IE6能识别*html .class{},IE7能识别*+html .class{}或者*:first-child+html .class{}等。

CSS属性hack:比如 IE6能识别下划线"_"和星号" * ",IE7能识别星号" * ",但不能识别下划线"_",而firefox两个都不能认识等。

IE条件注释hack:

针对所有IE:<!--[if IE]><!--您的代码--><![endif]-->

针对IE6及以下版本:<!--[if lt IE 7]><!--您的代码--><![endif]-->

这类Hack不仅对CSS生效,对写在判断语句里面的所有代码都会生效。

书写顺序,一般是将识别能力强的浏览器的CSS写在前面。

 

用法

比如要分辨IE6和firefox两种浏览器,可以这样写:

div{
background:green; /* for firefox */*background:red; /* for IE6 */ (both IE6 && IE7)}

可以看到在IE6中看到是红色的,在firefox中看到是绿色的。

在firefox中,它是识别不了后面的那个带星号的东西是什么的,于是将它过滤掉,解析得到的结果是:div{background:green},于是理所当然这个div的背景是绿色的。
在IE6中,它两个background都能识别出来,它解析得到的结果是:div{background:green;background:red;},于是根据优先级别,处在后面的red的优先级高,于是当然这个div的背景颜色就是红色的了。
 
浏览器识别
          Css Hack                
test

上面这段代码大家可以直接copy出来,保存成html在各浏览器试试。分析:

(1)background-color:blue; 各个浏览器都认识,这里给firefox用;
(2)background-color:red\9; \9所有的ie浏览器可识别;
(3)background-color:yellow\0; \0 是留给ie8的,但笔者测试,发现最新版opera也认识,汗。。。不过且慢,后面自有hack写了给opera认的,所以,\0我们就认为是给ie8留的;
(4)+background-color:pink; + ie7定了;
(5)_background-color:orange; _专门留给神奇的ie6;
(6):root #test { background-color:purple\9; } :root是给ie9的,网上流传了个版本是 :root #test { background-color:purple\0;},新版opera也认识,所以经笔者反复验证最终ie9特有的为:root 选择符 {属性\9;}
(7)@media all and (min-width:0px){ #test {background-color:black\0;} } 这个是老是跟ie抢着认\0的神奇的opera,必须加个\0,不然firefox,chrome,safari也都认识。。。
(8)@media screen and (-webkit-min-device-pixel-ratio:0){ #test {background-color:gray;} }最后这个是浏览器新贵chrome和safari的。

 

浏览器 CSS hack
IE6 _background-color:#38DB24;
IE67 *background-color:#38DB24 ;
IE67 +background-color:#38DB24 ;
IE67 #background-color:#38DB24;
IE67 background-color:#38DB24 !ie;
IE678910 background-color:#38DB24\9;
IE78910&Firefox&Opera&Chrome&Safari html>body .ie78910-all-hack 
{ background-color: #38DB24 }
IE8910&Firefox&Opera&Chrome&Safari html>/**/body .ie8910-all-hack
{ background-color: #38DB24 }
IE8910&Opera background-color:#38DB24\0;
IE910 :root .ie910-hack 
{ background-color:#38DB24\9; }
IE910 background-color:#38DB24\9\0;
IE910&Firefox&Opera&Chrome&Safari body:nth-of-type(1) .ie910-all-hack
{background-color:#38DB24 ;}
IE910&Firefox&Opera&Chrome&Safari @media all and (min-width: 0px)
{ .ie910-all-2-hack{ background-color:#38DB24 ;} }
IE910&Firefox&Opera&Chrome&Safari @media all and (min-width: 0px)
{ .ie910-all-3-hack{background-color:#38DB24 ;} }
IE910&Firefox&Opera&Chrome&Safari :root *> .ie910-all-4-hack
{ background-color:#38DB24 }
IE10 @media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) 
{ .ie10-hack{background-color:#38DB24 ;} }
Firefox @-moz-document url-prefix()
{ .firefox-hack{background-color:#38DB24 ;} }
Chrome&Safari @media screen and (-webkit-min-device-pixel-ratio:0) 
{.chrome-safari-hack{background-color:#38DB24 ;} }
 

 

 

作者:
出处:
欢迎转载或分享,但请务必声明文章出处。如果文章对您有帮助,希望你能
推荐
关注
 
 
 
 
 

转载于:https://www.cnblogs.com/ForEvErNoME/p/3385153.html

你可能感兴趣的文章
centos 安装日志分析软件goAccess
查看>>
ELK实时日志分析平台(elk+kafka+metricbeat)-KAFKA(二)
查看>>
自动化运维工具Ansible实战(二)主机清单的管理
查看>>
js中对小数取整
查看>>
历史命令history应该这么玩
查看>>
自动化工具ansible的安装和使用
查看>>
ORA-00600 [3756]内部错误一例
查看>>
Shell练习题(1)
查看>>
bootstrap改变上传文件按钮样式,并显示已上传文件名
查看>>
PHP开启php_stomp.dll的具体方式,php5.6开启stomp的图解过程
查看>>
诊断ORA-08103错误
查看>>
4FHS和bash
查看>>
nagios分布式监控配置
查看>>
文本基本处理工具
查看>>
linux下的数据备份工具rsync讲解
查看>>
Gnu/Linux系统C编程之 -- 用户和组
查看>>
17.三层技术之虚接口与路由
查看>>
MIME::Lite发邮件附件
查看>>
boost asio第二课 多线程异步服务器历程一个错误的例子
查看>>
KVM虚拟机,如何设置虚拟机的CPU型号与物理机是一样的
查看>>