CSS - 中心标题背景自动调整大小容器中的图像,具有自动调整大小的功能

时间:2011-12-09 06:22:24

标签: html css

我的css容器目前的静态宽度为900px,并且有一个相同宽度的标题背景图像。我想让容器自动调整大小,并在居中的标题背景图像的两端都有纯色自动调整大小区域。

谢谢!

西葫芦

这就是我一直在使用的

/* ------------------------------
global styles
------------------------------ */

body
{
margin: 0;
padding: 0;
font: Verdana, Geneva, sans-serif;
text-align: center;
color: #F0F0F0;
background: #FFFFFF;
}

a:link { color: #B52c07; }
a:visited { color: #b93411; }
a:focus { color: #000; }
a:hover { color: #7d8206; }
a:active { color: red; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 .5em; }

h2
{
color: #000000;
font: 140% Verdana, Geneva, sans-serif;
}

h2 a { text-decoration: none; }

h3
{
color: #000000;
font: 110%  Verdana, Geneva, sans-serif;
}

/* ------------------------------
container styles
------------------------------ */

#container
{
margin: 1em auto;
width: 100%;
text-align: center;
background: #fff;
border: 1px solid #000000;
}

/* ------------------------------
header styles
------------------------------ */

#headertop
{
position:relative;
height: 178px;
width: 100%;
text-align:center;
/*background-position:center;
/*position:static;*/
background-image:url(../images/Header.jpg);
/*background-position:center;
/*background: url(../images/Header.jpg);*/
background-color:#000000;
border-bottom: 0px solid #fff;
}

2 个答案:

答案 0 :(得分:1)

您无需添加自动宽度容器 - 只需使用body元素作为背景图像(因为它将跨越整个屏幕,无论容器的大小如何。

答案 1 :(得分:-1)

将标题背景颜色设置为您想要的纯色,然后将背景图像居中设置为无重复。

这是你应该做的:

#headertop
{
    margin: 0 auto;
    background-image:url(http://dummyimage.com/900x100/ab24ab/0011ff.png&text=Header);
    background-repeat:no-repeat;
    background-color:#000000;
}