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


You can do this:

CSS

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

DEMO HERE

1

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