如何避免contenteditable div背景在div内触摸时闪烁灰色?
可以在 iOS Safari 或 UIWebview 对象上重现。
示例 HTML URL:http://html5demos.com/contenteditable
示例图片:https://docs.google.com/file/d/0B-On7OzzI7SZZmtLMGEzZHNfNkU/edit?usp=sharing
Best Answer-推荐答案 strong>
将此 CSS 添加到您的 div 中,即“contenteditable=true”
div {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
关于ios - Contenteditable 元素背景在元素内部触摸时闪烁,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/19686973/
|