Internet Explorer允许在错误的contenteditable div元素中进行转换

时间:2017-01-17 16:59:38

标签: jquery css internet-explorer

Internet Explorer允许在contenteditable =“false”div元素中进行转换。

在其他浏览器中,一切正常,转换不会发生,但不会发生在IE中。

CSS

#sch-brand-filter {
  width:100px; 
  height: 20px;
  border: 1px white solid;
}

#sch-brand-filter:focus {
    outline: 0;
    box-shadow: inset 0 0 0 0.125em #ffd151;
    -webkit-transition: box-shadow .2s ease-out;
            transition: box-shadow .2s ease-out;
}

<div id="sch-brand-filter" contenteditable="false"></div>

0 个答案:

没有答案