TinyMCE editor fixed size with no scrollers?

前端 未结 5 2081
长情又很酷
长情又很酷 2021-01-18 14:48

At the moment I have this:

    tinyMCE.init({
// General options
mode : \"exact\",
elements : \"fkField, lkField, ukcField, khField\",
theme : \"advanced\",
         


        
5条回答
  •  春和景丽
    2021-01-18 15:15

    add in a ccs file the following code

    .mceContentBody{
             overflow-y:hidden!important;
          }
    

    and add the path of css file in content_css attribut of tinymce

    content_css : /path/to/css/file.ss
    

提交回复
热议问题