我在版本1.3中找到了许多示例,但到目前为止我看到jqm 1.4没有正常版本
版本1.3的listview上的CSS解决方案是:
background-color: transparent !important;
background-image: url('') !important;
有人建议我修复版本1.4(1.4.4)吗?
TNX!
答案 0 :(得分:2)
只需将它应用于LI本身:
li {
background-color: transparent !important;
}
如果您在listitems中有锚标记,则将其应用于锚点:
li a {
background-color: transparent !important;
}
<强> DEMO 强>