答案 0 :(得分:0)
这是因为您已在gridster中启用了gridster。
在JavaScript的第5行,您选择了网格中的所有ul
标记并将其转换为子网格。您可以将其更改为仅使用大于号来选择外部ul
元素,如下所示:
gridster = $(".gridster > ul").gridster({ //...
添加此>
符号会使选择器仅定位ul
的{{1}},而不是.gridster
中的所有ul
。< / p>
同样,您的CSS需要相同的修复:
.gridster > ul {
list-style: none;
background-color: gray;
}
.gridster > ul li {
background-color: white;
}
尝试使用这些更改,它应该可以更好地工作。