如何改变底栏的高度?

时间:2015-08-11 11:09:37

标签: css html5

我有一个网站,但有一个问题我无法改变底栏高度。 在CSS中尝试过,但实际上无法改变它。 你能救我吗?

如您所见,有棕色底栏。非常感谢你。

http://havana.royalmedia.sk/humenne/

2 个答案:

答案 0 :(得分:1)

向页脚添加高度属性(如果我理解你不会这样做):

 .footer {
            background-color: #120a06;
            border-top: 4px solid #a36830;
            bottom: 0;
            height: 100px;
            padding: 10px 0 0;
            position: fixed;
            text-align: left;
            width: 100%;
            height:100px; /*add this*/
  }

答案 1 :(得分:1)

只需删除.footer类中的高度。

footer {
    position: fixed;
    padding: 10px 0 0 0;
    bottom: 0;
    width: 100%;
    background-color: #120a06;
    border-top: 4px solid #a36830;
    text-align: left;
}

这将在页脚中显示整个数据