Answers for "put content center vertically and horizontally hmtl"

CSS
28

css center horizontally and vertically

.parent {
  position: relative;
}
.child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
Posted by: Guest on January-03-2020

Code answers related to "put content center vertically and horizontally hmtl"

Browse Popular Code Answers by Language