Jump to content
  • 0

Проблема с высотой


param
 Share

Question

Здравствуйте.

Столкнулся с проблемой вёрстки.

Необходимо получить следующий вид: 2556028m.jpg,

однако у меня получается такой вид: 2614399m.jpg

Привожу код страницы:

<!DOCTYPE html>
<html>
<head>

</head>

<body>

<div id="wrapper">

<header id="header">
<div>Заголовок</div>
<nav id="hor_menu">
Меню
</nav>
</header>

<section id="middle">
<div id="container">
<div id="content">

</div>
</div>

<aside id="sideLeft">
<nav id="ver_menu">
Меню
</nav>
</aside>

<aside id="sideRight">

</aside>

</section>



</div><!-- #wrapper -->

<footer id="footer">
Нижнее меню
</footer>

</body>
</html>


*{
margin:0;
padding:0;
}
html, body{
height:100%;
background:#fff;
}
header, nav, section, article, aside, footer {
display:block;
}
body{
font:16px/18px Arial, Tahoma, Verdana, sans-serif;
width:100%;
}
#wrapper{
width:1002px;
margin:0 auto;
height:100%;
}

/*Header*/

#header{
height:155px;
position:relative;
border:1px solid #b4b0b0;
border-bottom:none;
}
/*Middle*/

#middle{
min-height:100%;
background:url(../images/all.jpg) repeat-y;
border-left:1px solid #b4b0b0;
border-right:1px solid #b4b0b0;
}
#middle:after{
content:'.';
display:block;
clear:both;
visibility:hidden;
height:0;
}
#container{
width:100%;
float:left;
margin-top:53px;
}
#content{
position:relative;
padding:0 270px 0 210px;
}
#sideLeft{
float:left;
width:199px;
margin-left:-100%;
position:relative;
margin-top:53px;
}
#sideRight{
float:left;
margin:0 -3px 0 -258px;
width:261px;
position:relative;
margin-top:53px;
}
/*Footer*/

#footer{
padding-top:15px;
width:1000px;
margin:-45px auto 0;
height:30px;
position:relative;
overflow:hidden;
background:#fff;
clear:both;
border:1px solid #b4b0b0;
border-bottom:none;
}

При этом если #middle поставить margin-top, например 445px, то всё становится нормально, то есть полосы не вылазят за футер. Также нужно отметить, что данная проблема проявляется когда мало контента, если его много, то всё ОК. Подскажите в чём проблема!

Edited by param
Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

у меня ряд вопросов:

— почему у #wrapper height: 100%, а не min-height: 100%, как должно быть? (кстати, если сделать так, то поведение ожидаемо корректное в любом случае);

— зачем такое безумное количество обёрток?

— что помешало показать работающий пример на http://jsfiddle.net/?

Link to comment
Share on other sites

  • 0

Вот так я подкрасил футер: http://jsfiddle.net/nq9v3/2 он прижимается к низу страницы, соответственно полоски идущие фоном в #middle, должны не вылазить ниже футера, а заканчиваться на нём, как показано на первой картинке.

Link to comment
Share on other sites

  • 0

Спасибо большое, работает!

Хотя конечно я бы некогда не догадался, что дело в потоке элементов, может поясните пожалуйста, почему именно так влияет float:left?

Edited by param
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