How do you style contentEditable in Firefox?

后端 未结 6 844
旧时难觅i
旧时难觅i 2021-01-04 12:42

I have the following:

Item 2

In webkit I can easily style this with css. Firefox is ignorin

6条回答
  •  鱼传尺愫
    2021-01-04 13:14

    You can match the div with this code

    div[contenteditable=true] {
       background: rgba(0,0,0,0); /* transparent bg */
       resize:none; /* disable resizing */
    }
    

提交回复
热议问题