如何将固定的页脚背景图像调整为所需的分辨率?

时间:2014-10-16 19:08:05

标签: css background resize footer resolution

请在此处添加或更改以将footer-bg缩小为宽度为100的像素;和身高:18;? 如果现在看到我现在需要这个帮助,我会很高兴。 格拉西亚斯。

#footer-bg {
  background:#1f512e;
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 0;
  min-height: 43px;
}

.footer-top {
  height: 12px;
}

2 个答案:

答案 0 :(得分:0)

您可以使用

应用尺寸
        width: 100px;
        height: 18px;

http://jsfiddle.net/f9p6xbrn/2/

   #footer-bg {
        background:#1f512e;
        position: relative;
        display: block;
        width: 100px;
        height: 18px;
        padding-bottom: 0;
        min-height: 43px;
    }
    .footer-top {
        height: 12px;
    }

答案 1 :(得分:0)

足够简单。如果您希望绿色条中心并占用960px,请执行此操作。我的变化在底部。

#footer-bg {
  background:#1f512e;
  position: relative;
  display: block;
  padding-bottom: 0;
  min-height: 43px;

  width: 960px;
  margin: 0 auto;
}

如果要将页脚设置为100%并使其与其他内容匹配,则必须创建某种容器以放置所有内容,包括页脚。然后将该容器设置为宽度为960px,保证金:0自动。