0

我正在使用 CakePHP 进行开发,并且想修改使用 cake html helper 生成的 CKEditor 的高度,因为我需要在一个页面内有两个具有不同高度的编辑器。

我怎么能用css做到这一点?

4

2 回答 2

1

如果我记得在视图中定义 ckeditor js 时可以执行此操作,例如

ed = CKEDITOR.replace("textarea", { height:"291", width:"400" });

检查此文档:

http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.width

http://cksource.com/forums/viewtopic.php?t=13810

问候。

于 2012-05-08T19:20:48.830 回答
0
<script type="text/javascript">
     CKEDITOR.replace( 'texarea', height:'350px',autoGrow_minHeight:'350px'});
</script>

或者

<script type="text/javascript">
     CKEDITOR.replace( 'texarea', height:'350px',autoGrow_minHeight:'100%'});
</script>
于 2015-09-24T03:36:13.827 回答