Answers for "how to center position fixed div"

CSS
10

center position fixed

.centered {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
Posted by: Guest on June-03-2020
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

Browse Popular Code Answers by Language