朋友们,请帮我定义IE9的具体css规则? 例如像这样
/* IE 6 fix */
* html .twit-post .delete_note a { background-position-y: 2px; }
* html .twit-post .delete_note a:hover { background-position-y: -14px; }
答案 0 :(得分:30)
请注意,接受的答案也针对IE10。因此,有关更完整的列表:
* html .ie6 {property:value;}
或
.ie6 { _property:value;}
*+html .ie7 {property:value;}
或
*:first-child+html .ie7 {property:value;}
@media screen\9 {
.ie67 {property:value;}
}
或
.ie67 { *property:value;}
或
.ie67 { #property:value;}
@media \0screen\,screen\9 {
.ie678 {property:value;}
}
html>/**/body .ie8 {property:value;}
或
@media \0screen {
.ie8 {property:value;}
}
.ie8 { property /*\**/: value\9 }
@media screen\0 {
.ie8910 {property:value;}
}
@media screen and (min-width:0) and (min-resolution: .001dpcm) {
// IE9 CSS
.ie9{property:value;}
}
@media screen and (min-width:0) and (min-resolution: +72dpi) {
// IE9+ CSS
.ie9up{property:value;}
}
@media screen and (min-width:0) {
.ie910{property:value;}
}
_:-ms-lang(x), .ie10 { property:value\9; }
_:-ms-lang(x), .ie10up { property:value; }
或
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.ie10up{property:value;}
}
_:-ms-fullscreen, :root .ie11up { property:value; }
Modernizr在页面加载时快速运行以检测功能;然后呢 使用结果创建一个JavaScript对象,并向其中添加类 html元素
Javascript:
var b = document.documentElement;
b.setAttribute('data-useragent', navigator.userAgent);
b.setAttribute('data-platform', navigator.platform );
b.className += ((!!('ontouchstart' in window) || !!('onmsgesturechange' in window))?' touch':'');
将以下内容添加到html
元素:
data-useragent='Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C)'
data-platform='Win32'
允许非常有针对性的CSS选择器,例如:
html[data-useragent*='Chrome/13.0'] .nav{
background:url(img/radial_grad.png) center bottom no-repeat;
}
如果可能,请避免使用浏览器定位。识别并修复您识别的任何问题。支持progressive enhancement和graceful degradation。考虑到这一点,这是一个并非总能在生产环境中获得的“理想世界”场景,因此上述内容应该有助于提供一些好的选择。
答案 1 :(得分:24)
您可以使用
添加CSS样式:root
使其成为IE9特定的,如下所示:
:root #element { color:pink \0/IE9; } /* IE9 */
答案 2 :(得分:18)
<!--[if ie 9]>
your stuff here
<![endif]-->
答案 3 :(得分:8)
\ 9是&#34; CSS hack&#34;特定于Internet Explorer。
这仅仅意味着CSS的一个特定行以\ 9结尾;
在你的例子中, 如果您的CSS看起来像这样......
html .twit-post .delete_note a
{
background-position-y: 2px\9;
}
html .twit-post .delete_note a:hover
{
background-position-y: -14px\9;
}
结果将是background-position-y:-14px;在IE 9中
答案 4 :(得分:2)
我认为你可以做同样的事情,就像你想为IE6编写特定的代码,而是说IE9:)
<!--[if IE 9]>
Special instructions for IE 9 here
<![endif]-->
答案 5 :(得分:1)
使用条件CSS:
(将代码置于html上的<head>
上方,IE9将读取额外的CSS文件)
<!--[if (gte IE 9)|!(IE)]><!-->
place the link to the CSS file here
<![endif]-->
这意味着该方法使用新的CSS文件而不是类中的hack,这可以保证CSS有效。
答案 6 :(得分:0)
我发现在某些情况下使用负值(使用编译器编译LESS文件时):
margin-right: -15px\9; /* This fails */
margin-right: ~"-18px\9"; /* This passes */
答案 7 :(得分:-6)
您不应该以IE9为目标。它能够处理现代的CSS,不应该被黑客攻击。这是一种过时的开发方法。