bootstrap lg modal code example
Example 1: bootstrap modal lg extra
@media (min-width: 768px) {
.modal-xl {
width: 90%;
max-width:1200px;
}
}
Example 2: bootstrap modal lg
@media (min-width: 768px) {
.modal-xl {
width: 90%;
max-width:1100px;
}
}
Example 3: show a modal
<a onclick=\"$('#login').modal('hide');$('#lost').modal('show');\" href='#'>Click</a>