如果确实与阴影有关,您可能需要查看line 990
.bootstrap.css
请注意,这可能在不同版本的 Twitter Bootstrap 之间有所不同
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
background-color: #ffffff;
border: 1px solid #cccccc;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
-o-transition: border linear 0.2s, box-shadow linear 0.2s;
transition: border linear 0.2s, box-shadow linear 0.2s;
}
删除box-shadow
声明,看看会发生什么。
作为预防措施,您可以搜索所有box-shadow
出现的事件并将它们注释掉以查看它是否有所作为。
一旦你缩小了属性并修复了它,你可以使用一些 JS 魔法来只删除那个特定浏览器的阴影,但我会问一个关于这个的新问题。