【收藏】史上最全的浏览器 CSS & JS Hack 手册
浏览器渲染页面的方式各不相同,甚至同一浏览器的不同版本(“杰出代表”是 IE)也有差异。因此,浏览器兼容成为前端开发人员的必备技能。如果有一份浏览器 Hack 手册,那查询起来就方便多了。这篇文章就向大家分享 Browserhacks 帮我们从网络上收集的各个浏览器特定的 CSS & JavaScript Hack,记得推荐和分享啊!
IE 选择器 Hack
|
1
2
3
|
/* IE 6 and below */* html .selector {}.suckyie6.selector {} /* .suckyie6 can be any unused class */ |
|
1
2
|
/* IE 7 and below */.selector, {} |
|
1
2
3
4
|
/* IE 7 */*:first-child+html .selector {}.selector, x:-IE7 {}*+html .selector {} |
/* Everything but IE 6 */html > body .selector {} |
|
1
2
3
|
/* Everything but IE 6/7 */html > /**/ body .selector {}head ~ /* */ body .selector {} |
|
1
2
3
4
5
|
/* Everything but IE 6/7/8 */:root *> .selector {}body:last-child .selector {}body:nth-of-type(1) .selector {}body:first-of-type .selector {} |
IE 属性/值 Hack
|
1
2
3
|
/* IE 6 */.selector { _color: blue; }.selector { -color: blue; } |
|
1
2
3
|
/* IE 6/7 - acts as an !important */.selector { color: blue !ie; }/* string after ! can be anything */ |
|
1
2
3
4
5
6
7
|
/* IE 6/7 - any combination of these characters: ! $ & * ( ) = % + @ , . / ` [ ] # ~ ? : < > | */.selector { !color: blue; }.selector { $color: blue; }.selector { &color: blue; }.selector { *color: blue; }/* ... */ |
|
1
2
3
|
/* IE 8/9 */.selector { color: blue\0/; }/* must go at the END of all rules */ |
|
1
2
|
/* IE 9/10 */.selector:nth-of-type(1n) { color: blue\9; } |
|
1
2
3
|
/* IE 6/7/8/9/10 */.selector { color: blue\9; }.selector { color/*\**/: blue\9; } |
|
1
2
|
/* Everything but IE 6 */.selector { color/**/: blue; } |
IE Media Query Hack
|
1
2
|
/* IE 6/7 */@media screen\9 {} |
|
1
2
|
/* IE 8 */@media \0screen {} |
|
1
2
|
/* IE 9/10, Firefox 3.5+, Opera */@media screen and (min-resolution: +72dpi) {} |
|
1
2
|
/* IE 10+ */@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {} |
|
1
2
|
/* IE 6/7/8 */@media \0screen\,screen\9 {} |
|
1
2
|
/* IE 8/9/10 & Opera */@media screen\0 {} |
|
1
2
|
/* IE 9/10 */@media screen and (min-width:0\0) {} |
|
1
2
|
/* Everything but IE 6/7/8 */@media screen and (min-width: 400px) {} |
IE JavaScript Hack
|
1
2
3
|
/* IE 6 */(checkIE = document.createElement("b")).innerHTML = "<!--[if IE 6]><i></i><![endif]-->";var isIE = checkIE.getElementsByTagName("i").length == 1; |
|
1
2
3
4
|
/* IE 7 */(checkIE = document.createElement("b")).innerHTML = "<!--[if IE 7]><i></i><![endif]-->";var isIE = checkIE.getElementsByTagName("i").length == 1;navigator.appVersion.indexOf("MSIE 7.")!=-1 |
|
1
2
|
/* IE <= 8 */var isIE = '\v'=='v'; |
|
1
2
3
|
/* IE 8 */(checkIE = document.createElement("b")).innerHTML = "<!--[if IE 8]><i></i><![endif]-->";var isIE = checkIE.getElementsByTagName("i").length == 1; |
|
1
2
3
|
/* IE 9 */(checkIE = document.createElement("b")).innerHTML = "<!--[if IE 9]><i></i><![endif]-->";var isIE = checkIE.getElementsByTagName("i").length == 1; |
|
1
2
|
/* IE 10 */var isIE = eval("/*@cc_on!@*/false") && document.documentMode === 10; |
|
1
2
|
/* IE 10 */var isIE = document.body.style.msTouchAction != undefined; |
Firefox 浏览器
选择器 Hack
|
1
2
|
/* Firefox 1.5 */body:empty .selector {} |
|
1
2
|
/* Firefox 2+ */.selector, x:-moz-any-link {} |
|
1
2
|
/* Firefox 3+ */.selector, x:-moz-any-link; x:default {} |
|
1
2
|
/* Firefox 3.5+ */body:not(:-moz-handler-blocked) .selector {} |
媒体查询 Hack
|
1
2
|
/* Firefox 3.5+, IE 9/10, Opera */@media screen and (min-resolution: +72dpi) {} |
|
1
2
|
/* Firefox 3.6+ */@media screen and (-moz-images-in-menus:0) {} |
|
1
2
|
/* Firefox 4+ */@media screen and (min--moz-device-pixel-ratio:0) {} |
JavaScript Hack
|
1
2
|
/* Firefox */var isFF = !!navigator.userAgent.match(/firefox/i); |
|
1
2
|
/* Firefox 2 - 13 */var isFF = Boolean(window.globalStorage); |
|
1
2
|
/* Firefox 2/3 */var isFF = /a/[-1]=='a'; |
|
1
2
|
/* Firefox 3 */var isFF = (function x(){})[-5]=='x'; |
Chrome 浏览器
选择器 Hack
|
1
2
|
/* Chrome 24- and Safari 5- */::made-up-pseudo-element, .selector {} |
媒体查询 Hack
|
1
2
|
/* Chrome, Safari 3+ */@media screen and (-webkit-min-device-pixel-ratio:0) {} |
JavaScript Hack
|
1
2
|
/* Chrome */var isChrome = Boolean(window.chrome); |
Safari 浏览器
选择器 Hack
|
1
2
3
|
/* Safari 2/3 */html[xmlns*=""] body:last-child .selector {}html[xmlns*=""]:root .selector {} |
|
1
2
|
/* Safari 2/3.1, Opera 9.25 */*|html[xmlns*=""] .selector {} |
|
1
2
|
/* Safari 5- and Chrome 24- */::made-up-pseudo-element, .selector {} |
媒体查询 Hack
|
1
2
|
/* Safari 3+, Chrome */@media screen and (-webkit-min-device-pixel-ratio:0) {} |
JavaScript Hack
|
1
2
|
/* Safari */var isSafari = /a/.__proto__=='//'; |
Opera 浏览器
选择器 Hack
|
1
2
|
/* Opera 9.25, Safari 2/3.1 */*|html[xmlns*=""] .selector {} |
|
1
2
|
/* Opera 9.27 and below, Safari 2 */html:first-child .selector {} |
|
1
2
|
/* Opera 9.5+ */noindex:-o-prefocus, .selector {} |
媒体查询 Hack
|
1
2
|
/* Opera 7 */@media all and (min-width: 0px){} |
|
1
2
|
/* Opera 12- */@media all and (-webkit-min-device-pixel-ratio:10000), not all and (-webkit-min-device-pixel-ratio:0) {} |
|
1
2
|
/* Opera, Firefox 3.5+, IE 9/10 */@media screen and (min-resolution: +72dpi) {} |
|
1
2
|
/* Opera, IE 8/9/10 */@media screen {} |
JavaScript Hack
|
1
2
|
/* Opera 9.64- */var isOpera = /^function \(/.test([].sort); |
|
1
2
|
/* Opera 12- */var isOpera = Boolean(window.opera); |

【收藏】史上最全的浏览器 CSS & JS Hack 手册的更多相关文章
- 【必备】史上最全的浏览器 CSS & JS Hack 手册
[必备]史上最全的浏览器 CSS & JS Hack 手册 浏览器渲染页面的方式各不相同,甚至同一浏览器的不同版本(“杰出代表”是 IE)也有差异.因此,浏览器兼容成为前端开发人员的必备技 ...
- 【必备】史上最全的浏览器 CSS & JS Hack 手册(转)
浏览器渲染页面的方式各不相同,甚至同一浏览器的不同版本(“杰出代表”是 IE)也有差异.因此,浏览器兼容成为前端开发人员的必备技能.如果有一份浏览器 Hack 手册,那查询起来就方便多了.这篇文章就向 ...
- 史上最全的浏览器 CSS & JS Hack 手册
浏览器渲染页面的方式各不相同,甚至同一浏览器的不同版本(“杰出代表”是 IE)也有差异.因此,浏览器兼容成为前端开发人员的必备技能.如果有一份浏览器 Hack 手册,那查询起来就方便多了.这篇文章就向 ...
- 史上最全Html与CSS布局技巧
单列布局水平居中水平居中的页面布局中最为常见的一种布局形式,多出现于标题,以及内容区域的组织形式,下面介绍四种实现水平居中的方法(注:下面各个实例中实现的是child元素的对齐操作,child元素的父 ...
- 史上最全Html和CSS布局技巧
单列布局水平居中 水平居中的页面布局中最为常见的一种布局形式,多出现于标题,以及内容区域的组织形式,下面介绍四种实现水平居中的方法(注:下面各个实例中实现的是child元素的对齐操作,child元 ...
- 史上最全的 UIWebview 的 JS 与 OC 交互
来源:伯乐在线 - 键盘风筝 链接:http://ios.jobbole.com/89330/ 点击 → 申请加入伯乐在线专栏作者 其实一直想给大家整理一下JS与OC的交互,但是没有合适的机会,今天借 ...
- 主流浏览器Css&js hack写法
参考: BROWSER HACKS 主流浏览器的Hack写法
- 史上最全的CSS hack方式一览
做前端多年,虽然不是经常需要hack,但是我们经常会遇到各浏览器表现不一致的情况.基于此,某些情况我们会极不情愿的使用这个不太友好的方式来达到大家要求的页面表现.我个人是不太推荐使用hack的,要知道 ...
- [转]史上最全的CSS hack方式一览
做前端多年,虽然不是经常需要hack,但是我们经常会遇到各浏览器表现不一致的情况.基于此,某些情况我们会极不情愿的使用这个不太友好的方式来达到大家要求的页面表现.我个人是不太推荐使用hack的,要知道 ...
随机推荐
- mysql5.7根据.frm和.ibd文件恢复表结构和数据
一.恢复表结构 1.环境:Windows .mysql5.7:首先创建一个数据库,可以通过navicat来创建: 2.使用当前创建的数据库:use ww; 3.随意创建一张表,但是这张表的名字 ...
- 037--pymysql和SQLAchemy
一.pymysql操作 1.执行SQL #!/usr/bin/env python # -*- coding:utf-8 -*- import pymysql # 创建连接 conn = pymysq ...
- hdoj5317【素数预处理】
//这个很好了...虽然是一般.. int isp[1000100]; int p[1000100]; void init() { int sum=0; int i,j; fill(isp,isp+1 ...
- LightOj 1088 - Points in Segments (二分枚举)
题目链接: http://www.lightoj.com/volume_showproblem.php?problem=1088 题目描述: 给出一个n位数升序排列的数列,然后q个查询,每个查询问指定 ...
- 【模板】c++动态数组vector
相信大家都知道$C$++里有一个流弊的$STL$模板库.. 今天我们就要谈一谈这里面的一个容器:动态数组$vector$. $vector$实际上类似于$a[]$这个东西,也就是说它重载了$[]$运算 ...
- 洛谷p1955[NOI2015]程序自动分析
题目: 在实现程序自动分析的过程中,常常需要判定一些约束条件是否能被同时满足. 考虑一个约束满足问题的简化版本:假设x1,x2,x3...代表程序中出现的变量,给定n个形如xi=xj或xi≠xj的变量 ...
- Little Elephant and Elections CodeForces - 258B
Little Elephant and Elections CodeForces - 258B 题意:给出m,在1-m中先找出一个数x,再在剩下数中找出6个不同的数y1,...,y6,使得y1到y6中 ...
- 树状数组+二分||线段树 HDOJ 5493 Queue
题目传送门 题意:已知每个人的独一无二的身高以及排在他前面或者后面比他高的人数,问身高字典序最小的排法 分析:首先对身高从矮到高排序,那么可以知道每个人有多少人的身高比他高,那么取较小值(k[i], ...
- 水题 Codeforces Round #286 (Div. 2) A Mr. Kitayuta's Gift
题目传送门 /* 水题:vector容器实现插入操作,暴力进行判断是否为回文串 */ #include <cstdio> #include <iostream> #includ ...
- Centos 6.5安装MySQL-python
报错信息: Using cached MySQL-python-1.2.5.zip Complete output from command python setup.py egg_info: ...