How to disable elements selection and resizing in contenteditable div?

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

E.g. I have the following layout:

12条回答
  •  遥遥无期
    2020-12-01 14:21

    SOLVED! On placing the non content-editable span within a content-editable BODY, it started showing a resize-able SPAN container. What just fix my problem was a simple one-liner CSS style pointer-events: none; on the inner SPAN tag.

    min-width: 1.5cm;
    display: inline-block;
    pointer-events: none;
    
      Sample Text
    

提交回复
热议问题