开发者

css center problem

<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. #he开发者_开发技巧adermain is also centered by using margin:auto;


Use width property :

 #headermain { width: 1000px; margin: 0 auto; }
 #logo { width: 400px; margin: 0 auto; }


div#logo must have a width property for margin: auto; to work


Is it? #logo { text-align: center }

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜