我将如何将两个 slickgrid 表并排放置?现在,我只是使用 grid = new Slick.Grid... 创建两个网格,但我必须在 CSS 中使用硬编码的尺寸,例如:
#dynamic1 { /*this is grid one*/
position: absolute;
top: 120px;
left: 0px;
right: 0px;
bottom: 0px;
height:500px;
}
#dynamic2 { /*grid two*/
position: absolute;
top: 120px;
left: 750px;
right: 0px;
bottom: 0px;
height:500px;
}
这不好玩。而且它不是动态的。如果可能的话,如果我可以将它们并排放置,并且组合宽度可以扩展以填充整个浏览器窗口,那就太好了。
编辑:它是固定的!这是新代码:
#dynamic1 {
float: left;
width: 49%;
position: absolute;
top: 120px;
left: 0px;
right: 0px;
bottom: 0px;
height:500px;
}
#dynamic2 { /*grid two*/
float: right;
width: 50%;
position: absolute;
top: 120px;
right: 0px;
bottom: 0px;
height:500px;
}