TinyMCE width and height disobedient!

前端 未结 12 1009
自闭症患者
自闭症患者 2020-12-14 08:09

According to the (conflicting) documentation of TinyMCE, the editor takes on the size of the textarea (or other) element that it replaces. It also says that you can set the

12条回答
  •  爱一瞬间的悲伤
    2020-12-14 08:24

    I am facing the same problem but I end up doing this

    #tinymce-textarea_ifr {
      min-height: 500px !important;
    }
    .mce-tinymce {
      width: 96% !important;
      margin: 0 auto !important;
    }
    

提交回复
热议问题