我的应用程序有个小问题,ie 11没有占位符
我尝试了下面的CSS示例,但是没有成功。
:-ms-input-placeholder { /* IE10–11 */
color: #ccc !important;
font-weight: 400 !important;
}
::-ms-input-placeholder { /* Edge */
color: #ccc;
font-weight: 400;
}
::placeholder { /* CSS Working Draft */
color: #ccc;
font-weight: 400;
}
有什么建议吗?
最后找到了如何解决这个问题,即使使用internet explorer 11,也将调试器屏幕上的仿真设置为默认值9,因此我将此添加到HTML的head标签上。
<meta http-equiv="X-UA-Compatible" content="IE=11">