-1

我需要的最终结果背景图像:

生成的背景图像

我使用的背景图片:

原始背景图片

但我有这个小提琴

::小提琴总结::

HTML...

<div id="top-part">
<div id="topmost">
    <div id="top-most" class="wrapper">

    </div>
</div>
<div id="topmenu" class="wrapper">

</div>

CSS...

.wrapper{
      position: relative;
      width: 943px;
      margin: 0 auto;
}
#top-part{
      background: url(img/bg-header-effects.png) no-repeat top center;
}
#topmost{
      background: #900;
      opacity: 0.8;
}
#top-most{
      height: 139px;
}
#topmenu{
      background: #900;
      opacity: 0.8;
      height: 51px;
      border-radius: 0 0 20px 20px;
}
4

3 回答 3

11

更新 - 涵盖您最近的编辑

#header{

    background: #f00 url('http://i.stack.imgur.com/GWVfL.jpg');
    opacity: .6;
    width: 100%;
    height: 189px;
}

工作小提琴


您可以尝试background在 CSS 中使用该属性:

div{
    background: url('path_to_your_image.jpg') no-repeat;
}

在此处了解有关使用该background-image物业的更多信息

笔记:

background和之间有区别background-image。在这个答案中,我使用了该background属性,它基本上采用 CSS 中背景图像的所有可能选项,并让它们在一次调用中使用。

例如,您可以将上述内容拆分为两个选择器:

div{
    background-image: url('path_to_your_image.jpg') no-repeat; 
    background-repeat: no-repeat;
}
于 2013-04-17T03:12:42.173 回答
4

你可以像这个小提琴一样

html...

<div id="top-part">
  <div id="topmost">
  </div>
</div>
<div id="top-menu" class="wrapper">
  <div id="topmenu">
  </div>
</div>

css...

.wrapper{
    position: relative; 
    width: 943px; 
    margin: 0 auto;
}

#top-part{
   background: url(img/bg-header-effects.png) no-repeat top center;
}
#topmost{
   background: #900; 
   opacity: 0.8; 
   height: 139px;
}
#top-menu{
   background: url(img/bg-header-effects.png) no-repeat 50% 45%; 
   border-radius: 0 0 20px 20px;
}
#topmenu{
   background: #900; 
   opacity: 0.8; 
   height: 51px; 
   border-radius: 0 0 20px 20px;
}
于 2013-04-19T03:25:37.130 回答
0

我正在考虑的简单方法是在覆盖整个页面的 div 中放置一张图片。代码将非常简单,但唯一的缺点是图像可能会变形或者可以单击,除非你有这个。

HTML:

<div id="backgroundcolor">
            <div id="backgroundimage">
                </div>
        </div>

CSS:

#backgroundcolor {
    background-color: #000;
    z-index: 1;
}
#backgroundimage {
    background: ("http://cdn.theatlantic.com/static/infocus/election110712/s_e01_37923312.jpg");
    resize: none;
    object-position: center;
    object-fit: initial;
}
于 2013-04-20T05:02:01.633 回答