[Solved] How to make a modal responsive in bottom of the page? [closed]

[ad_1]

You can do this:

CSS

.modal-dialog{
  position:absolute;
  width: 500px;
  left: 50%;
  bottom:0;
  margin-left: -250px;
}

DEMO HERE

1

[ad_2]

solved How to make a modal responsive in bottom of the page? [closed]