Answers for "css horizonally center div"

1

how to center an element in css

.container{
  display:bock;
  width:fit-content;
  margin:auto;
}
Posted by: Guest on September-23-2021
2

how to horizontal center a div in css

#inner {
  width: 50%;
  margin: 0 auto;
}
Posted by: Guest on June-18-2020

Browse Popular Code Answers by Language