Answers for "html container center content"

CSS
0

align div content center

.child {
  ...
  margin: 0 auto;
}
Posted by: Guest on July-30-2021
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

Code answers related to "html container center content"

Browse Popular Code Answers by Language