使用calc()的text-indent在IE中不起作用

时间:2015-06-25 09:12:36

标签: css css3 internet-explorer

我在IE11中测试了这个,只是为了确定。出于某种原因,即使所有其他主要浏览器都正常工作,您也无法在text-indent语句中提供calc()。这种行为有什么特别的原因吗?

<div class="test">Test 1</div>
<div class="test2">Test 2</div>

.test {
    text-indent: -20px;
}
.test2 {
    text-indent: calc(-20px);
}

http://jsfiddle.net/8zh4wdvj/

IE11:

IE11

铬:

enter image description here

0 个答案:

没有答案