Answers for "how to middle fixed element"

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
1

how to center a position fixed element horizontally

left: 50%;
margin-left: -400px; /* Half of the width */
Posted by: Guest on April-12-2020

Code answers related to "how to middle fixed element"

Browse Popular Code Answers by Language