How to hide the controls of HTMLEditor?

前端 未结 10 735
日久生厌
日久生厌 2020-12-10 12:45

is it possible to hide the controls of a HTMLEditor above the actual text? (Alignment, Copy&Paste icons, stylings etc.)

Thanks for any help

10条回答
  •  北荒
    北荒 (楼主)
    2020-12-10 13:20

    You can remove specific buttons using CSS, for example:

    .html-editor-copy {
      visibility: hidden;
    }
    

    The full list of the CSS button names can be found at: Oracle CSS Reference Guide

提交回复
热议问题