为什么保证金在'bootstrap col'的div之间不起作用?

时间:2013-09-30 10:05:03

标签: css twitter-bootstrap

http://bootply.com/84073

<div class"col-lg-12"="">
    <header class="clearfix">
        <section id="branding">
            <a href="index.php"><img src="https://www.google.com/images/srpr/logo4w.png" alt=""></a>
        </section>
  </header></div>

我尝试添加#branding {margin:0 auto}来将徽标设置为中间,但它不起作用

2 个答案:

答案 0 :(得分:1)

您可以使用

 #branding{text-align: center;}

答案 1 :(得分:0)

img {
  display: block;
  margin: 0 auto;
}

应该做的伎俩。