-1

我想在页脚上方做一个固定栏,上面写着:“这个网站处于测试阶段。请将反馈发送到 info@blah.com。”

我是 CSS 新手,正在为此苦苦挣扎。

这是我的页脚 CSS:

#footer {
  min-height: 60px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #000000;
  background-image: -moz-linear-gradient(top, #4d4d4d, #333333);
  background-image: -ms-linear-gradient(top, #4d4d4d, #333333);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#4d4d4d), to(#333333));
  background-image: -webkit-linear-gradient(top, #4d4d4d, #333333);
  background-image: -o-linear-gradient(top, #4d4d4d, #333333);
  background-image: linear-gradient(top, #4d4d4d, #333333);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4d4d4d', endColorstr='#333333', GradientType=0);
  background-color: #424242;
  background-image: -moz-linear-gradient(top, #4d4d4d, #333333);
  background-image: -ms-linear-gradient(top, #4d4d4d, #333333);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#4d4d4d), to(#333333));
  background-image: -webkit-linear-gradient(top, #4d4d4d, #333333);
  background-image: -o-linear-gradient(top, #4d4d4d, #333333);
  background-image: linear-gradient(top, #4d4d4d, #333333);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4d4d4d', endColorstr='#333333', GradientType=0);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.1);
  -moz-box-shadow: 0 1px 3px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.1);
  box-shadow: 0 1px 3px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.1);
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.1);
  -moz-box-shadow: 0 1px 3px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.1);
  box-shadow: 0 1px 3px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.1);
  height: 40px;
}
#footer a {
  color: rgb(153, 153, 153);
  text-decoration: none;
}
#footer span {
  font-size: 10pt;
  margin-left: .5em;
  color: rgb(153, 153, 153);
  text-decoration: none;
  text-shadow: 0px 0px 0px
}
#footer-inner {
  padding: 20px 0;
}

基本上我只想要它上面的一个小条,它固定在页脚上,并且不会破坏页脚的格式。

我该怎么做?

4

1 回答 1

2

由于您没有提及您的 HTML 标记,因此我从头开始创建了一些内容。

您可以将位置设置#footer相对,然后创建一个元素,该元素以负值绝对top定位。所以它会一直停留在页脚的顶部,不会影响页脚本身,也不会影响上面的内容:

HTML

<footer id="footer">
    <aside>This site is beta</aside>
    Footer
</footer>​

CSS

#footer {
    position: relative;
}

#footer > aside {
    position: absolute;
    left: 0;
    top: -50px;
    width: 120px;
    height: 40px;
}

这是关于 jsfiddle 的演示

于 2012-10-28T00:44:43.813 回答