Answers for "align bootstrap modal to center screen"

0

modal center of screen

#signUpModal {
	display: 'flex';
	justify-content: 'center';
	align-items: 'center';
}
Posted by: Guest on February-11-2021
0

bootstrap modal center page

.modal-dialog {
  height: 100vh !important;
  display: flex;
}

.modal-content {
  margin: auto !important;
  height: fit-content !important;
}
Posted by: Guest on December-17-2021

Code answers related to "align bootstrap modal to center screen"

Browse Popular Code Answers by Language