Answers for "horizontal align in div"

CSS
1

how to horizontal center a div in css

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

center element horizontally in div

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

#outer {
  border: 1px solid red;
  width:100%
}

<-- Html -->

<div id="outer">
  <div id="inner">Foo foo</div>
</div>
Posted by: Guest on April-24-2022

Code answers related to "horizontal align in div"

Browse Popular Code Answers by Language