jQuery UI dialog box not positioned center screen

后端 未结 23 3134
失恋的感觉
失恋的感觉 2020-12-01 00:31

I have a jQuery dialog box that is meant to position in the middle of the screen. However, it seems slightly off-center vertically.

Here is the code:

         


        
23条回答
  •  悲哀的现实
    2020-12-01 01:19

    $("#dialog").dialog({
           autoOpen: false,
            height: "auto",
            width: "auto",
            modal: true,
             my: "center",
             at: "center",
             of: window
    })
    

    This solution does work but only because of the newer jQuery versions ignoring this completely and falling back to the default, which is exactly this. So you can just remove position: 'center' from your options if you just want the pop up to be centered.

提交回复
热议问题