Answers for "which of the following styles center a fixed element horizontally"

CSS
2

keeping elements of container in center

.container {
margin : 0 auto;
}
Posted by: Guest on July-28-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 "which of the following styles center a fixed element horizontally"

Browse Popular Code Answers by Language