Textarea的CSS Box-Shadow无法在IE11上运行

时间:2015-07-02 15:52:11

标签: css internet-explorer textarea internet-explorer-11 box-shadow

我无法使box-shadow属性在Internet Explorer 11中的textarea元素上正常运行。我已经找到了一些解决方案,例如添加border-collapse: separate;,但是似乎不适合我。 enter image description here

这是元素的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-alignfont-sizefont-family。谢谢你的帮助。

0 个答案:

没有答案