自定义背景图片

时间:2012-06-26 13:05:48

标签: css background

如何在css中创建这样的背景(中间和最后一个块具有流体高度):

bg

有没有好的教程?

2 个答案:

答案 0 :(得分:4)

您可以制作顶部和底部div元素,并按如下方式设置其CSS:

#topBGDiv 
{
    width: 100%;
    height: 125px; // Make this the height of the background image in pixels
    background-image: url('dark-gray-ribbon.jpg');
    background-repeat: repeat-x;
    overflow: hidden;
}


#bottomBGDiv 
{
    width: 100%;
    height: 110px; // Make this the height of the background image in pixels
    background-image: url('light-gray-ribbon.jpg');
    background-repeat: repeat-x;
    overflow: hidden;
}

使用这样的图像作为顶部的背景图像:

enter image description here

和一个这样的底部:

enter image description here

最后,将页面背景颜色的CSS设置为中间颜色。所以,像这样:

body
{
    background-color: #C0C0C0;
}

答案 1 :(得分:0)

您可以这样写:

#top,#bottom
{
    height: 110px; // Make this the height of the background image in pixels
    background: url('BG.jpg') repeat-x left top;
}


#bottom
{
    background-position:left bottom;
}