0

我正在尝试将 froala 所见即所得编辑器的背景图像更改为看起来像笔记本,

但它根本没有改变任何东西......有人可以帮我修复它并告诉我如何吗?

这就是我正在做的事情:

<style type="text/css">

textarea.notebook {
      font-family: 'Open Sans', Arial, Helvetica, sans-serif;
      font-weight: 700;
      width: 100%;
      padding: 5px 0px;
      margin-bottom: 20px;
      resize: vertical;
      font-size: 11px;
      line-height: 24px;
      border-bottom: 2px solid;
       -webkit-appearance: none;
      border-radius: 0;
      background: url(notebook.png);
}


</style>

<section id="editor">

    <form>
      <textarea  id="edit"  name="edit" class="notebook"  style="margin-top: 30px;">

  </textarea>


    </form>

  </section>
4

1 回答 1

1

一种可能的方法是为 froala 编辑器创建自定义主题,请参阅:

http://editor.froala.com/examples/color-themes

我怀疑如果你可以修改背景颜色,你也可以添加背景图片。

于 2014-10-03T14:38:35.357 回答