javascriptcssalertifyalertifyjs

Alertify JS Center dialog window


Is there a way to center the dialog windows of the Alertify Js plugin? http://alertifyjs.com

I have seen there is a property called position, but it does not support center position.

Thank you all.


Solution

  • If you modify the css you can achieve this:

    .alertify .ajs-dialog {
        top: 50%;
        transform: translateY(-50%);
        margin: auto;
    }
    

    Before:

    enter image description here

    After:

    enter image description here