我在CKEditor中为每个模板动态设置边距遇到麻烦。现在我在做什么直接打到content.css

我的问题是如何直接从php modul设置边距。

这是我直接命中的我的content.css

body
{
    /* Font */
    font-family: sans-serif, Arial, Verdana, "Trebuchet MS";
    font-size: 12px;

    /* Text color */
    color: #333;

    /* Remove the background color to make it transparent */
    background-color: #fff;

    /*margin: 113px 94px 151px 113px; */
    margin: 3cm 2.5cm 4cm 3cm;
}


谢谢,
亨德拉

最佳答案

在您的ckeditor textarea / div之外创建一个div,并为外部div提供边距。

<div id = "ckeContainer">
    <textarea name="editor1">This textarea is used for CKeditor</textarea>
</div>

<script>
    document.getElementById('ckeContainer').style.margin="3px 2px 3px 4px";
</script>


编辑

您也可以尝试以下Javascript:

document.body.style.margin = "3px 2px 3px 4px";


希望能帮助到你!

关于css - CKEditor动态设置textarea边距,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37582364/

10-12 06:49