我有一个由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;
}
答案 0 :(得分:0)
你可以试试overflow-y: scroll
.popover {
max-height: 150%;
max-width: 35%;
overflow-y: scroll;
word-wrap: break-word;
}