jQuery 移动版,删除 space 可折叠列表视图
jQuery Mobile, remove space in collapsible with listview
当我点击左上角的按钮并点击硬件时,每里之间的space太多了。我希望它为 0。我该怎么做?
我尝试了各种解决方案,但都没有用。
这是我的jsfiddle
我试过一些习惯 css:
.custom-li {
padding: 0 !important;
border-width:0 !important;
}
.custom-li +li {
border-top-width: 0 !important;
}
.custom-li li[data-role="collapsible"]{
margin: 0 !important;
border-bottom-right-radius: 0 !important;
border-bottom-left-radius: 0 !important;
border-width:0 !important;
}
加入你的css
.ui-listview, .ui-listview > li{margin-bottom:-22px;}
.ui-listview {line-height: 0;}
当我点击左上角的按钮并点击硬件时,每里之间的space太多了。我希望它为 0。我该怎么做?
我尝试了各种解决方案,但都没有用。
这是我的jsfiddle
我试过一些习惯 css:
.custom-li {
padding: 0 !important;
border-width:0 !important;
}
.custom-li +li {
border-top-width: 0 !important;
}
.custom-li li[data-role="collapsible"]{
margin: 0 !important;
border-bottom-right-radius: 0 !important;
border-bottom-left-radius: 0 !important;
border-width:0 !important;
}
加入你的css
.ui-listview, .ui-listview > li{margin-bottom:-22px;}
.ui-listview {line-height: 0;}