簡體   English   中英

ckeditor5 圖像調整大小無法正常工作..?

[英]ckeditor5 image resize not working correctly..?

我在我的項目中集成了 ckeditor5 編輯器來做電子郵件模板,下面是我的 ckeditor 代碼

<CKEditor
       
                editor={ ClassicEditor }
                config={ {
                    
                    toolbar: [ 'heading', 'bold', 'italic', 'bulletedList', 'numberedList', 'blockQuote' ,  'fontColor' , 'fontBackgroundColor' , 'code', 'uploadImage'],
                    ckfinder:{
                    uploadUrl:'upload url'
                }} }
                data={template}
                onReady={ editor => {
                    // You can store the "editor" and use when it is needed.
                    //console.log( 'Editor is ready to use!', editor );
                } }
                onChange={ ( event, editor ) => {
                    const data = editor.getData();
                    console.log(data)
                    setTemplate(data)
                } }
        
            />

當我在我的數據庫中使用 ckeditor 存儲圖像時,ckeditor 代碼是這樣的

<figure class="image image_resized" style="width:2.82%;"><img src="https://www.w3schools.com/html/pic_trulli.jpg"></figure><p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; welcome to &nbsp; {{first_name}}</p>

我的模板是這樣的

在此處輸入圖片說明

我在 ckeditor 中的樣式如下圖所示,但圖像調整大小沒有出現在我的模板中

在此處輸入圖片說明

一些請幫我解決這個歡迎!

看這個,我猜你需要把figure標簽顯示改成block。

    <html>
<head>
<style>
figure {
  display: block;

}
</style>
</head>
<body>

<p>A figure element is displayed like this:</p>

<figure>
  <img src="img_pulpit.jpg" alt="The Pulpit Rock" width="2%" >
</figure>

<p>Change the default CSS settings to see the effect.</p>

</body>
</html>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM