OneCompiler

How to align a `<div>` present in another `<div>` in the center

I want to position my inside <div> in the center of the outside <div>

<div class="outside">
  <div class="inside">Hello World!!</div>
</div>

1 Answer

5 years ago by

Style it usig CSS as below:

.inside {
margin: 0 auto;
}

5 years ago by Jahaan