Jump to content
  • 0

Не вытягивается див, не могу придумать как


SibBear
 Share

Question

Не работает в Опере и Мозиле. Divmiddle должен растягиваться вместе с divright поидее, но не хочет

<style type="text/css">

#divbox {
position: relative;
margin: 0 auto;
padding: 0;
width: 400px;
top: 0px"
}

#divtop {
width: 400px;
height: 30px;
background: #F00;
}

#divmiddle {
width: 400px;
min-height: 300px;
background: #F0F;
}

#divbottom {
width: 400px;
height: 30px;
background: #00F;
}

#divleft {
float: left;
width: 200px;
height: 300px;
background: #FF0;
}

#divright {
float: left;
width: 200px;
height: 30px;
background: #0FF;
}


</style>

<div id="divbox">
<div id="divtop"> </div>
<div id="divmiddle">
<div id="divleft"> </div>
<div id="divright">
dfghdfgh<p>dfgh</p>
<p>dfghd</p>
<p>fgh</p>
<p>dfg</p>
<p>hd</p>
<p>fgdf</p>
<p>gdfg</p>
<p>fgh</p>
<p>sdfgs</p>
<p>fsdfs</p>
<p>fd</p>
<p>sdf</p>
<p> 
</div>
</div>
<div id="divbottom"> </div>
</div>

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

А какое поведение макета подразумевалось? Просто у вас я заметил 2 нестыковочки.

1). У #divright прописан height: 30px. IE обрабатывает параметр height так же, как FF и Opera обрабатывают min-height. Поэтому текст ведет себя так, как должен - выходит за рамки. Ставьте min-height: 300px короче :lol:

2). Вы изъяли из нормального потока #divleft и #divright при помощи float:left, а очистить их забыли... IE на это пофик т.к. явно указана высота этих блоков.

Предлагаю вам прописать в стилях

#divmiddle:after {
content:".";
clear:both;
display:block;
height:0;
visibility:hidden;
}

и еще clear:both для #divbottom в догонку :)

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