Answers for "how to put a div in the middle of the screen with fixed position"

CSS
0

how to middle fixed element

position: fixed;
	top: 0;
	z-index: 100;
	left: 50%;
	transform: translateX(-50%);
Posted by: Guest on June-12-2020

Code answers related to "how to put a div in the middle of the screen with fixed position"

Browse Popular Code Answers by Language