我正在尝试以编程方式在 Phonegap/JQuery mobile 中找到设备宽度,并通过修改将它们注入我的 css 样式。
这是我试图根据设备的高度和宽度更改元素“包装器”的高度的 css 代码
#wrapper {
width: 310px;
height: 400px;
float: left;
position: relative; /* On older OS versions "position" and "z-index" must be defined, */
z-index: 1; /* it seems that recent webkit is less picky and works anyway. */
overflow: hidden;
background: #ffffff;
}
谁能知道它是如何工作的?谢谢