jQuery Mobile - 对话框宽度和边距

默认情况下,对话框的宽度和边距是在 jQuery Mobile 中设置的。 对话框的默认宽度为 92.5%。 在较大的屏幕上,对话框的上边距设置得较大,即 10% 的上边距,但在小屏幕上它会折叠到很小的边距。 需要时可以在您的样式表中覆盖此样式。

.ui-dialog-contain {
   width: 92.5%;
   max-width: 500px;
   margin: 10% auto 15px auto;
   padding: 0;
   position: relative;
   top: -15px;
}

❮ jQuery Mobile - 页面