Answers for "center a div relative to the screen"

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 "center a div relative to the screen"

Browse Popular Code Answers by Language