How to disable elements selection and resizing in contenteditable div?

前端 未结 12 2384
被撕碎了的回忆
被撕碎了的回忆 2020-12-01 14:16

E.g. I have the following layout:

12条回答
  •  甜味超标
    2020-12-01 14:26

    To disable the resize handles, all I had to do was add the following for IE11:

    div {
        pointer-events: none;
    }
    

    For firefox executing this line after the contenteditable element has been inserted works:

    document.execCommand("enableObjectResizing", false, false);
    

提交回复
热议问题