How to hide the controls of HTMLEditor?

前端 未结 10 701
日久生厌
日久生厌 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:29

    .tool-bar
    {
        /*-fx-visibility:hidden;
         -fx-display:none; */
    
        -fx-opacity: 0;
    }
    

    opacity works, but the menu stays active.

提交回复
热议问题