Answers for "css horizontal center position fixed"

CSS
12

center position fixed

.centered {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
Posted by: Guest on June-03-2020

Code answers related to "css horizontal center position fixed"

Browse Popular Code Answers by Language