默认情况下,没有图像浮动,只有图像,文本对齐我应该手动执行还是已经有一些插件?找不到任何……或者我怎样才能获得当前选中的元素并浮动它们?
解决方法
你可以使用style_formats选项.
文件在这里: https://www.tiny.cloud/docs/configure/content-formatting/#style_formats
文件在这里: https://www.tiny.cloud/docs/configure/content-formatting/#style_formats
This option enables you to add more advanced style formats for text
and other elements to the editor. The value of this option will be
rendered as styles in the Formats dropdown.
初始化时,你可以这样做.
tinymce.init({ ... style_formats: [ { title: 'Image Left',selector: 'img',styles: { 'float': 'left','margin': '0 10px 0 10px' } },{ title: 'Image Right',styles: { 'float': 'right','margin': '0 0 10px 10px' } } ] });
希望这可以帮助.