DO YOU NEED A CONTENT WRITER FOR YOUR BUSINESS?

Your One-Stop Solution for All Content Needs! Click here for more!
Categories: Css

Horizontally center a div within a div using CSS style

Share

Sometimes we need to horizontally center a div that is within another div using CSS that make the inner element center horizontally.

In that case, you don’t have to set the width to 50%. So, any width which is less than the containing div will work.

Let’s see how to horizontally center a div.

For example, you have the following HTML:

<div id="outerDiv" style="width: 100%">
<div id="innerDiv">Content goes here...</div>
</div>

Apply this CSS to the inner div:

#innerDiv {
width: 50%;
margin: 0 auto;
}

The margin: 0 auto is what does the actual centering.

#outerDiv {
width: 100%;
text-align: center;
}

That makes the inner div centered with text-align.

Read Also: Align text vertically next to an image

If you are targeting IE8+, then you can use this instead:

#innerDiv {
display: table;
margin: 0 auto;
}

This will make the inner element center horizontally without setting a specific width.

Using box model:

#outerDiv{
width:100%;

/* Firefox */display:-moz-box;
-moz-box-pack:center;
-moz-box-align:center;

/* Safari and Chrome */display:-webkit-box;
-webkit-box-pack:center;
-webkit-box-align:center;

/* W3C */display:box;
box-pack:center;
box-align:center;
}
#innerDiv{
width:50%;
}

If you are targeting IE8+, this might be better to have this instead:

#innerDiv {
display: table;
margin: 0 auto;
}

This will make the inner element center horizontally and this works also without setting a specific width.

CSS Designer

Recent Posts

Innovations in Hair Care: Exploring Breakthroughs for Lasting Results

Over the years, people have experimented with various methods to maintain healthy and beautiful hair.…

16 hours ago

How To Strengthen Your Brand-Building Efforts?

Your brand more than developing an attractive and creative logo and infectious motto. It's the…

2 days ago

How To Be Successful And Maximize Compensation In A Personal Injury Case

Introduction Are you someone who has suffered from a personal injury and want to file…

2 days ago

What Are The Biggest Challenges Of Working From Home?

Operating from home has emerged as one of the most popular ways of doing jobs…

3 days ago

Art As An Asset: Will NFT’s Help You Survive Hyperinflation?

If the consequences of our society’s ever-growing debt are what worries you, then it is…

4 days ago

Essential Elements of a Franchise Marketing Strategy

No matter how much competition is there, a well-planned franchise marketing strategy can scale up…

5 days ago