我正在绞尽脑汁尝试获得.gridster-mobile
课来保持身高。由于高度设置为空字符串,它目前在移动设备时忽略min_size[0]
。
我有一个临时修复,我只是通过媒体查询设置所有高度:
@media (max-width: 500px) {
.gridster-item{
height:120px !important;
}
}
这是网格设置:
isMobile: false, // stacks the grid items if true
mobileBreakPoint: 600, // if the screen is not wider that this, remove the grid layout and stack the items
mobileModeEnabled: true,
如何在移动模式下保留行高?
答案 0 :(得分:3)
我发布了这个问题,因为我没有找到答案,这是一个记录较少的配置设置:
saveGridItemCalculatedHeightInMobile:true
这应该会让你头疼。在示例配置中,这是远离其他移动设置的列表,因此很容易忽略。