CKEditor动态设置textarea边距

时间:2016-06-02 03:54:59

标签: css ckeditor wysiwyg rich-text-editor

我在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;
}

谢谢, 亨德拉

1 个答案:

答案 0 :(得分:0)

在你的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";

希望它有所帮助!