AnA*_*ice 10 html css firefox html5 contenteditable
我有以下内容:
<div contenteditable="true">Item 2</div>
在webkit中,我可以使用css轻松设置这个样式.Firefox忽略了css,并使得contenteditable div白色和可调整大小.
如何在Firefox中修改contentEditable的css.我希望背景是透明的,并禁用调整大小和调整大小句柄栏.
谢谢
Sim*_*one 11
您可以使用此代码匹配div
div[contenteditable=true] {
   background: rgba(0,0,0,0); /* transparent bg */
   resize:none; /* disable resizing */
}
div[contenteditable="true"] {
    /* your style here */
}
simone的答案大多是正确的,除了在[contenteditable ="true"]中需要引用"true"的引号
| 归档时间: | 
 | 
| 查看次数: | 10247 次 | 
| 最近记录: |