最简单的富文本编辑器

html:

  <div class="editor" contenteditable="true"></div>

css:

  .editor{
       580px;
      height: 65px;
      border: 0px;
      outline: 0;   //设置边框为0;
      margin-bottom: 5px;
  }

..
原文地址:https://www.cnblogs.com/shoolnight/p/6401286.html