页脚栏无法对齐文本

时间:2017-04-21 22:40:48

标签: html css

嘿,我页面底部的页脚栏不会对齐文字。

这是我的HTML:

  <div class="row">
    <div id="footer">
    <h3>Contact</h3>
    <h3>Computerbasen</h3>
    <h3>Info</h3>
    </div>
  </div>

这是我的css:

#footer {
    background-color: #FF7633;
    width: 100%;
    height: 50px;
    border-radius: 5px;
    padding-top: 10px;
    text-align:center;
    position: fixed;
    bottom: 0;
  }

Click here and see the image of the footer bar

3 个答案:

答案 0 :(得分:1)

如果您的意思是水平对齐,请使用以下规则:

#footer h3 {
 text-align:center;
}

h3元素默认为100%宽度和左对齐)

答案 1 :(得分:1)

你知道html中有一个页脚标记,试试这个:

<footer>
<h3>Contact</h3>
<h3>Computerbasen</h3>
<h3>Info</h3>
</footer>

footer {
  background-color: #FF7633;
    width: 100%;
    height: 50%;
    border-radius: 5px;
    padding-top: 10px;
    text-align:center;
    bottom: 0;
}

答案 2 :(得分:0)

尝试

#footer {
    height: 150px;
}

大多数文字没有显示,因为高度太小。