【问题标题】:how to hide the border of text area in ui-tinymce如何在ui-tinymce中隐藏文本区域的边框
【发布时间】:2015-11-05 07:48:52
【问题描述】:

我想在 ui-tinymce 中进行内联编辑。它是文本区域,我想隐藏它的边框。仅当用户单击文本区域时才应进行编辑。我是内联的,但它仍然显示边界。

$scope.tinymceOptions = {
        inline: true,
        menubar: false,
        toolbar: "bold italic underline styleselect",
        statusbar: false,
        skin: 'lightgray',
        theme : 'modern'
  };

【问题讨论】:

    标签: angularjs tinymce rich-text-editor


    【解决方案1】:

    在你的 tinymceOptions 中试试这个:

    inline_boundaries: false
    

    如果仍然无法正常工作,您始终可以通过以下方式覆盖 CSS 中的边框:

    .mce-container {
       border: 0px !important;
    }
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2018-03-07
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2020-02-05
      • 1970-01-01
      • 2010-10-04
      • 1970-01-01
      相关资源
      最近更新 更多