Can I fix the width and the height of jQueryMobile dialog?

前端 未结 5 484
感动是毒
感动是毒 2020-12-19 05:48

Can I fix the width and the height of jQueryMobile dialog? Currently, the size of width is 100% which is really awful in iPad.

5条回答
  •  离开以前
    2020-12-19 06:38

    I did this in addition to Mike's suggestion, the background page is visible, only covered by the dialog box, and not the dialog box's background.

    .ui-dialog { 
        min-height: 480px;
        background-color: transparent;
        background-image: none;
    }
    

提交回复
热议问题