我有一个 jquery 移动应用程序,其中有一个可折叠的 div。
当我单击此可折叠文件时,它会打开,但页面高度保持在 100%,这意味着我无法向下滚动并查看其中的内容。
我认为 jquery mobile 是为了在打开这样的东西时调整页面高度?
<div id="hints" class="main" data-role="page" data-theme="a">
<div data-role="content" id="content">
<h2>Hints & Tips</h2>
<p>Helping you get the most out of ARMA 3</p>
<div data-role="collapsible" data-theme="e" data-content-theme="e">
<h4>Launch Paramaters</h4>
</div>
</div>
</div>
如果可能的话,我真的想要一个 CSS 修复而不是一个 JS,因为这不应该需要 JS。
我努力了:
* {
min-height:100% !important;
}
* {
min-height:auto !important;
}
似乎影响它的 CSS 是:
.ui-panel{
border:1px solid #333;
background:#111;
color:#fff;
font-weight:bold;
text-shadow:0 -1px 0 #000;
background-image:-webkit-gradient(linear,left top,left bottom,from( #3c3c3c ),to( #111 ));
background-image:-webkit-linear-gradient( #3c3c3c,#111 );
background-image:-moz-linear-gradient( #3c3c3c,#111 );
background-image:-ms-linear-gradient( #3c3c3c,#111 );
background-image:-o-linear-gradient( #3c3c3c,#111 );
background-image:linear-gradient( #3c3c3c,#111 )
}