Reputation: 13038
How do I center align 3 floating divs inside each other centered on page ?
<div style="width:100%">
<div style="width:90%">
<div style="width:80%">
//Content
</div>
</div>
</div>
Upvotes: 5
Views: 38035
Reputation: 10239
Use margin: auto
in CSS.
<div style="background-color: red; height: 100px; width: 500px; margin: auto;">
<div style="background-color: green; height: 100px; width: 300px; margin: auto;">
<div style="background-color: blue; height: 100px; width: 100px; margin: auto;">
//Content
</div>
</div>
</div>
Upvotes: 15
Reputation: 3194
If the element you're centering has a specified width, you can center it with margin: 0 auto
Upvotes: 3