Answers for "how to center div in html by css"

CSS
37

center a div css

.center {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
Posted by: Guest on March-31-2021
3

how to center a div

.center {
  margin: auto;
  width: 50%;
  border: 3px solid green;
  padding: 10px;
}
Posted by: Guest on July-14-2020
4

how to center a div

margin:auto
Posted by: Guest on August-13-2020

Browse Popular Code Answers by Language