-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;
}

働くフィドル


backgroundCSS でプロパティを使用してみることができます。

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

background-image物件のご利用について詳しくはこちら

ノート:

と の間には違いがbackgroundありbackground-imageます。この回答では、background基本的に CSS の背景画像に使用できるすべてのオプションを取得し、それらを 1 回の呼び出しで使用できるようにするプロパティを使用しました。

たとえば、上記を 2 つのセレクターに分割できます。

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 に答える