Jump to content
  • 0

Высота крайних DIV по высоте среднего


Frie
 Share

Question

<div id="primary_content">

<div id='background_content_left'></div>

<div id='center'></div>

<div id='background_content_right'></div>

</div>

#primary_content{

width:736px;

min-height:600px;

margin-left:26px;

float:left;

margin-top:31px;

}

#background_content_left{

background-image: url("img/background_content_left.png");

width:17px;

height:100%;

background-repeat:repeat-y;

float:left;

}

#center{

width:699px;

min-height:600px;

float:left;

}

#background_content_right{

background-image: url("img/background_content_right.png");

width:20px;

height:100%;

background-repeat:repeat-y;

float:left;

}

В общем, в блоке #primary_content есть три блока, крайние это тени, нужно чтобы они растягивались по высоте дива #center.

Если я ставлю чёткую высоту у крайних то всё нормально, но высота всегда динамическая, по-этому она должна меняться относительно высоты центрального дива.

Подскажите пожалуйста как сделать кроссбраузерное решение, ie6 - не имеет значения =)

Edited by Frie
Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

Если это тени, то есть box-shadow и соответсвующие filter для IE.

http://jsfiddle.net/7rBEX/

реализация на display: table + display: table-cell

отсюда нерабочий вариант для ие7

я в курсе насчёт box-shadow но в ие это не работает =)

я хочу тупо картинками, чтобы они растягивались по высоте среднего дива. больше мне ничего не надо =)

Link to comment
Share on other sites

  • 0

жесть :facepalmxd: .. ничего не понял

Смысл в том, что реализовать то, что вы хотите, можно либо через таблицы, либо через javascript. Есть еще метод faux columns, т.е. физически мы не растягиваем боковые колонки, а добавляем фон для блока которые содержит все колонки (боковые и центральную), который тянется по высоте контента. Таким образом создается впечатление, что колонки растянуты идентично центральной.

Link to comment
Share on other sites

  • 0

Вообще есть более простое решение.

Два слоя — один в другом. Каждому из них приписываются в качестве бэкграунда соответствующие картинки с тенью, повторяющиеся по y-оси.

Пример (свойство border заменить на background): http://jsfiddle.net/3wrgf/

Link to comment
Share on other sites

  • 0

могу предложить такой вариант:

<style>
.shadow{
position:relative;
padding:0px 5px;}
.shadow-left{
position:absolute;
top:0px;
left:0px;
bottom:0px;
width:5px;
background:#999;}
.shadow-right{
position:absolute;
top:0px;
right:0px;
bottom:0px;
width:5px;
background:#999;}
#content{
background:#ccc;}
</style>
<div class="shadow">
<div id="content">
content
</div>
<div class="shadow-left"></div>
<div class="shadow-right"></div>
</div>

а еще можно так:


<style>
#content{
margin:0px 5px;
position:relative;
background:#ccc;}
.shadow-left{
position:absolute;
top:0px;
left:-5px;
bottom:0px;
width:5px;
background:#999;}
.shadow-right{
position:absolute;
top:0px;
right:-5px;
bottom:0px;
width:5px;
background:#999;}
</style>
<div id="content">
content
<div class="shadow-left"></div>
<div class="shadow-right"></div>
</div>

или так:


<style>
#content{
padding:0px 5px;
position:relative;
background:#ccc;}
.shadow-left{
position:absolute;
top:0px;
left:0px;
bottom:0px;
width:5px;
background:#999;}
.shadow-right{
position:absolute;
top:0px;
right:0px;
bottom:0px;
width:5px;
background:#999;}
</style>
<div id="content">
content
<div class="shadow-left"></div>
<div class="shadow-right"></div>
</div>

в каждом варианте свои нюансы

Edited by Switch74
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy