CSS 3 колонка с жидкостной компоновкой с фиксированной центральной колонкой

Я хочу сделать для своего маркетингового сайта 3-х столбчатую раскладку с изображениями в верхнем баннере.

Я хочу иметь жидкую левую/правую сторону с фиксированным центром. В идеале html выглядел бы так:

<div id="pixelLeft">&nbsp;</div>
<div id="bannerCenter">
  <img src="images/mybanner.png" />
</div>
<div id="pixelRight">&nbsp;</div>

<style>
#pixelLeft { background: url(../../images/pixel_left_fixed.png) 0 0 repeat-x; }
#pixelRight { background: url(../../images/pixel_right_fixed.png) 0 0 repeat-x; }
#bannerCenter { /* something here to make fixed width of 1550px */ }
</style>

Изображения в сторонах левого/правого пикселей равны 1px x 460px. Изображение mybanner.png - 1550px x 460px.

Спасибо заранее! (Особенно, если он будет работать во всех браузерах!)

Ответ 1

Это полезно?

Только демонстрация CSS

jQuery Demo (совместим с Cross Browser)

<div class="wrap">
    <div id="pixelLeft">&nbsp;</div>
    <div id="bannerCenter">
      <img src="images/mybanner.png" />
    </div>
    <div id="pixelRight">&nbsp;</div>
</div>
<div style="clear:both;"></div>

*{
    margin:0;
    padding:0;
}
#bannerCenter{
    background:#ddd;
    width: 500px;
    float:left;
}
#pixelLeft{
    background:#999;
    width: calc(50% - 250px);
    float:left;
}
#pixelRight{
    background:#999;
    width: calc(50% - 250px);
    float:right;
}

#bannerCenter,#pixelLeft,#pixelRight{
    height: 400px;
}

Вы можете использовать jQuery вместо использования calc(50% - 250px);, чтобы сделать его совместимым для старых браузеров.

$(document).ready(function() {
    $(window).on('resize', function() {
         $('#pixelLeft, #pixelRight').css('width',($('body').width()-$('#bannerCenter').width())/2);
    }).trigger('resize');      
});

Ответ 2

Здесь хорошее решение, на мой взгляд, самое легкое. Он выглядит чистым, и он не нуждается в обертке div.

Демо

HTML

<body>

<div id="left_container">
    <div id="left">
        left content
    </div>
</div>

<div id="center">
    center content
</div>

<div id="right_container">
    <div id="right">
        right content
    </div>
</div>

</body>

CSS

#left_container {
  width:50%;
  float:left;
  margin-right:-480px; /* minus half of the center container width */

  /* not important */
  height: 200px;
}
#left {
  margin-right:480px; /* half of the center container width */

  /* not important */
  background: #888;
  height: 600px;
}
#center {
  width:960px; /* size of the fixed width */
  float:left;

  /* not important */
  color: #FFF;
  background: #333;
  height: 500px;
}
#right_container {
  width:50%;
  float:right;
  margin-left:-480px; /* minus half of the center container width */

  /* not important */
  height: 300px;
}
#right {
  margin-left:480px; /* half of the center container width */

  /* not important */
  height: 300px;
  background-color: #888;
}

наслаждайтесь!

Ответ 3

Есть несколько решений для этого, вероятно, почтой, популярной из которых является метод Holy Grail. Это немного выше моей головы, но эти ссылки объясняют это довольно хорошо.

http://alistapart.com/article/holygrail

http://matthewjamestaylor.com/blog/perfect-3-column.htm

Я бы начал с статьи A List Apart. Удачи.

После повторного чтения, я думаю, что это то, что я сделал бы:

HTML

<div id="header">
</div><div id="container">
    <div id="center" class="column"></div>
    <div id="left" class="column"></div>
    <div id="right" class="column"></div>
</div><div id="footer"></div>

CSS

body {
    min-width: 550px;      /* 2x LC width + RC width */
}
#container {
    padding-left: 200px;   /* LC width */
    padding-right: 150px;  /* RC width */
}
#container .column {
    position: relative;
    float: left;
}
#center {
    width: 100%;
}
#left {
    width: 200px;          /* LC width */
    right: 200px;          /* LC width */
    margin-left: -100%;
}
#right {
    width: 150px;          /* RC width */
    margin-right: -150px;  /* RC width */
}
#footer {
    clear: both;
}
/*** IE6 Fix ***/
* html #left {
  left: 150px;           /* RC width */
}

Вам нужно будет отрегулировать некоторые параметры, но встроенные комментарии должны помочь с этим. Итак, у вас это есть. Макет Священного Грааля.

Ответ 4

<body>
  <div style="   width: 200px;    float: left;    background: red;    height: 100px;">Left</div>
 
  <div style="    float: right;    width: 200px;    background: red;    height: 100px;">Right</div>
   <div style="    background: blue;  margin:0 auto; height:100px;">Center content goes here</div>
</body>