Angularjs 如何在ui tinymce中隐藏文本区域的边框

Angularjs 如何在ui tinymce中隐藏文本区域的边框,angularjs,tinymce,rich-text-editor,Angularjs,Tinymce,Rich Text Editor,我想在ui tinymce中进行内联编辑。这是文本区域,我想隐藏它的边框。它应该只在用户点击文本区域时进行编辑。我内联为true,但它仍然显示边界 $scope.tinymceOptions = { inline: true, menubar: false, toolbar: "bold italic underline styleselect", statusbar: false, skin: 'lightgray

我想在ui tinymce中进行内联编辑。这是文本区域,我想隐藏它的边框。它应该只在用户点击文本区域时进行编辑。我内联为true,但它仍然显示边界

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

在您的tinymceOptions中尝试以下选项:

inline_boundaries: false
如果仍然不起作用,您可以通过以下方式覆盖css中的边框:

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