Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何减少jquery mobile中面板的高度?
$(function(){ $('#payable_panel').css('width','60%'); $('#payable_panel').css('height','30px'); }
我试过使用这段代码,但它似乎不起作用!
在 JQM 面板中,最小高度为 100%。因此,请在您的样式表中尝试以下内容。
.ui-panel{ min-height: 200px !important; }
这是小提琴演示