2

我正在quill.js和它一起工作,这太棒了!我确实有一件事我无法弄清楚。我有一个容器,可以滚动(想象一个 600x300 的窗口),我设置了溢出-y:滚动;但现在隐藏了元素。

这里演示选择了一些边框上的文本并且它被隐藏了,我想显示它或至少显示它的左侧和右侧。

JS

var quill = new Quill('#editor', {
  theme: 'bubble'   // Specify theme in configuration
});

CSS

.container {
  margin: 55px;
  border: 2px solid gray;
  border-radius:3px;
  paddding: 15px;
  width: 250px;
  height: 200px;;
  overflow-y:scroll;
  display:block;
}

示例:https ://jsfiddle.net/ptts0afd/

4

2 回答 2

1

有点快速破解,你可以使用:

.ql-bubble .ql-tooltip {
  left: 0% !important;
 }
于 2016-11-21T20:18:55.920 回答
1

在github上提问和回答。

使用绑定配置选项

于 2016-11-22T09:56:28.690 回答