如果仅为IE提供Padding底部

时间:2017-09-26 12:44:56

标签: html css

我正在尝试使用填充添加填充到输入区域    -MS-填充底:8像素;在IE11,但它不工作可以有人帮助我 请。

1 个答案:

答案 0 :(得分:2)

您可以在<head>中使用条件标签,仅为IE(6 - > 9)添加样式表。

<!--[if IE]>
    <link rel="stylesheet" type="text/css" href="all-ie-only.css" />
<![endif]-->

请参阅this article

对于IE 10+:

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {  
    .foo{background: red;}
}

仅适用于IE 11:

_:-ms-fullscreen, :root .foo { background: red; }