3

我无法使box-shadow属性在 Internet Explorer 11 中的元素上正常工作textarea。我已经找到了一些解决方案,例如添加border-collapse: separate;,但它们似乎对我不起作用。 在此处输入图像描述

这是元素的 CSS 代码。

.bootstrap-frm input[type="text"], .bootstrap-frm input[type="email"], .bootstrap-frm textarea, .bootstrap-frm select{
    border: 0px solid #CCC;
    background-color: #d3d3d3;
    color: #888;
    height: 20px;
    margin-bottom: 16px;
    margin-right: 6px;
    outline: 0 none;
    padding: 5px 0px 5px 5px;
    width: 55%;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    box-shadow: inset 0 2px 4px rgba(136, 136, 136, 1);
    -webkit-box-shadow: inset 0 2px 4px rgba(136, 136, 136, 1);
    -moz-box-shadow: inset 0 2px 4px rgba(136, 136, 136, 1);
}

.bootstrap-frm textarea{
    height: 205px;
    width: 95%;
}

其余代码并不重要——只有继承的参数是text-align,font-sizefont-family。谢谢你的帮助。

4

0 回答 0