点击绿框右上角的按钮(左侧框):http://jsfiddle.net/3HauW/211/
为什么灰色区域没有覆盖连接器?
我的连接器的z-index为18,灰色区域的z-index为19,是否应该覆盖连接器?
._jsPlumb_connector { z-index:18; }
.info{
background-color:#cfcfcf;
overflow-y: auto;
display:block;
height:200px;
z-index:19;
color:black;
word-wrap:break-word;
}
答案 0 :(得分:1)
将position:relative
或position:absolute
添加到.info
个样式。