Is it possible to center a <div> within another <div> using CSS(horizontally)?

Submitted 4 years, 4 months ago
Ticket #328
Views 378
Language/Framework Html
Priority Medium
Status Closed

<div id="outer">
  <div id="inner">Foo foo</div>
</div>

Any answer will be a great help......

Submitted on Dec 20, 20
add a comment

1 Answer

Verified

CSS FILE


#inner {  
  border: 1px solid black;
}

#outer {
  border: 1px solid red;
  width:100%
  display: flex;
  justify-content: center;
}
HTML FILE

<div id="outer">
  <div id="inner">Foo foo</div>
</div>

Submitted 4 years, 4 months ago


Latest Blogs