fckeditor自动换行

http://fluagen.blog.51cto.com/146595/38172




网上找了半天的资料也没有找个相关的修改,偶尔看到CSS:word-break:break-all;可以实现换行,那么控制编辑区就可以控制换行了,马上找到fckeditor\editor\css\fck_editorarea.css文件进行修改
body, td
{
font-family: 宋体,黑体,隶书,楷体_GB2312,Arial, Verdana, Sans-Serif;
font-size: 16px;
  width:750px;//编辑区大小
  word-break:break-all;//自动换行
}

你可能感兴趣的:(fckeditor)