Prevent line/paragraph breaks in contentEditable

前端 未结 11 483
青春惊慌失措
青春惊慌失措 2020-12-13 17:18

When using contentEditable in Firefox, is there a way to prevent the user from inserting paragraph or line breaks by pressing enter or shift+enter?

11条回答
  •  南笙
    南笙 (楼主)
    2020-12-13 17:43

    Add the following CSS rule to hide line breaks. This is only a style setting, you should add some event handlers to prevent inserting line breaks:

    .your_editable br {
        display: none
    }
    

提交回复
热议问题