Answers for "fixed in horizotaly center"

CSS
0

vertically and horizontally center a fixed div

// you dont need to know the divs dimensions and it does not require any container divs
position: fixed; 
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
Posted by: Guest on August-20-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

Browse Popular Code Answers by Language