如何获得这样的顶部和底部栏?

时间:2010-07-18 14:00:42

标签: html css

嘿伙计..查看页面顶部的淡灰色和页脚的灰色http://www.alcatel-lucent.com/wps/portal/BellLabs ..如何使用css获取此内容...我尝试使用

#bgtop{
background-image:url('bg_top.JPG');
background-repeat:repeat-x;
margin-top:auto;
}

但这不起作用..请帮忙

2 个答案:

答案 0 :(得分:1)

尝试指定高度

#bgtop{
background-image:url('bg_top.JPG');
background-repeat:repeat-x;
margin-top:auto;
height: 40px;
}

答案 1 :(得分:0)

尝试使用repeat-x为html提供所需的背景图像,它应该以这种方式工作。