当弹出窗口内容溢出时,弹出窗口箭头不显示

时间:2018-02-08 14:54:18

标签: jquery css

我有一个由jQuery生成的vanilla popover框,有时候需要显示一个长字符串。为了保持适当的尺寸,我将其溢出以便能够在内部滚动。问题是,当我将overflow属性添加到popover时,连接到它的箭头消失了。 Here can see the problem when I toggle the overflow attribute (gif).

我的CSS如下:

.popover {
  max-height: 150%;
  max-width: 35%;
  overflow: auto;
  word-wrap: break-word;
}

1 个答案:

答案 0 :(得分:0)

你可以试试overflow-y: scroll

吗?
.popover {
  max-height: 150%;
  max-width: 35%;
  overflow-y: scroll;
  word-wrap: break-word;
}