Hi Somboon,
you can implement dynamic modal pop-up size using modal-dialog class
and have look on this eg: https://www.codeply.com/go/bp/88364
.modal-dialog{
position: relative;
display: table; /* <-- This makes the trick */
overflow-y: auto;
overflow-x: auto;
width: auto;
min-width: 300px;
}
hope it helps!!.
Hi Somboon,
As Narendran j said you have to set width auto and min-width for modal-dialog class.
it will be affect the whole application
width: auto;
min-width: 300px;