javascript – Tinymce如何浮动图像?

前端之家收集整理的这篇文章主要介绍了javascript – Tinymce如何浮动图像?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
默认情况下,没有图像浮动,只有图像,文本对齐我应该手动执行还是已经有一些插件?找不到任何……或者我怎样才能获得当前选中的元素并浮动它们?

解决方法

你可以使用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'
         }
     }
]
});

希望这可以帮助.

原文链接:https://www.f2er.com/js/158818.html

猜你在找的JavaScript相关文章