Answers for "aligning contents in center of a div horizontally"

CSS
1

div center

#inner {
  display: table;
  margin: 0 auto;
  border: 1px solid black;
}

#outer {
  border: 1px solid red;
  width:100%
}
Posted by: Guest on December-07-2020
3

how to center a div

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

Code answers related to "aligning contents in center of a div horizontally"

Browse Popular Code Answers by Language