三个DIV彼此相邻,具有流体水平宽度

时间:2011-07-26 07:15:48

标签: html width alignment

我需要知道如何将所有三个div彼此相邻并且所有不同的背景图像对齐,并且中心一个需要989px左边div和右边div它们的宽度无关紧要。

2 个答案:

答案 0 :(得分:3)

简而言之.. http://jsfiddle.net/hobobne/qyGC5/

<style>
.sides {display: inline-block; width: 100px; border: 2px dotted green;}
#main {display: inline-block; width: 200px; border: 2px dotted blue;} /* you can change this to 989px */
</style>
<div class="sides">side 1</div><div id="main">main</div><div class="sides">side 2</div>

编辑:最终解决方案:http://jsfiddle.net/hobobne/qyGC5/4/

答案 1 :(得分:1)

<style type="text/css">
  #wrapper {
  }

  #wrapper div {
    float : left;
  }

  #wrapper #left {
    width : 300px;
    background-image : "/path/to/an_image";
  }
  #wrapper #center {
    width : 989px;
    background-image : "/path/to/another_image";
  }
  #wrapper #left {
    width : 200px;
    background-image : "/you/get/the/idea";
  }
</style>

<div id="wrapper">
  <div id="left"></div>
  <div id="center"></div>
  <div id="right"></div>
</div>