Answers for "modal center of screen css"

0

modal center of screen

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

how to make a modal stay center of screen

//add a  onclick function to your modal button
<button type="button" class="header__button" data-toggle="modal" data-target="#signUpModal" onclick="modalCenter()">
	signup
</button>
//add below function to your scripts
function modalCenter() {
        $('#signUpModal').css({
            'display': 'flex',
            'justify-content': 'center',
            'align-items': 'center'
        })
    }
Posted by: Guest on January-06-2021

Code answers related to "modal center of screen css"

Browse Popular Code Answers by Language