开发者

css center problem

开发者 https://www.devze.com 2023-02-16 19:30 出处:网络
<div id=\"headermain\"> <div id=\"logo\"> <a href=\"#\">net</a> </div> i\'m unable to center the #logo div inside of #headermain
<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

精彩评论

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