Reputation: 3
<div id="headermain">
<div id="logo">
<a href="#">net</a>
</div>
i'm unable to center the #logo div inside of #headermain
i'm giving margin:auto; but nothing happends. #headermain is also centered by using margin:auto;
Upvotes: 0
Views: 247
Reputation: 21834
Use width
property :
#headermain { width: 1000px; margin: 0 auto; }
#logo { width: 400px; margin: 0 auto; }
Upvotes: 4
Reputation: 1767
div#logo
must have a width
property for margin: auto;
to work
Upvotes: 1