Bootstrap V3.3.0的最新编译css(至少是以前的版本)在一些地方包含了一些不寻常的行高的语法。有人能解释一下吗?不用说,它会导致Resharper吐出假人......
input[type="month"] {
line-height: 34px;
line-height: 1.42857143 \0; <<<-- here. the '\0' is what bothers me
}
你会在css的第2408行找到它。
同样值得注意的是重复定义,有无单位。什么浏览器功能&#39;这样做是否正确?
答案 0 :(得分:2)
请参阅this issue on GitHub和this question on SO
它是一个特定于IE的CSS黑客,它只适用于IE10及其下。 \ 9将适用于IE9及其他等...所有其他浏览器将忽略它并保持34px行高。