Jump to content
  • 0

Как растягивать родительский блок без float:left


jumancy
 Share

Question

помогите решить одну проблемку:

есть общий блок container, внутри него блок main со свойствам float:left и футер, который прижат низ экрана. Общий блок имеет опред. ширину и центрировано. проблема в том что когда контент блока main больше он выходит за рамки container и его бордер не охватывает всю высоту. Как можно от этого избежать? В принципе можно, если придать container свойство float:left, но он должен быть в центре. Для наглядности даю код

HTML


<div id="container">
<div id="main">
контент
</div>
</div>
<div id="footer">
</div>

CSS


* {
margin: 0px;
padding: 0px;
}

html, body {
margin:0;
padding:0;
width:100%;
height:100%;
}
.cont {

}
#container{
margin:0 auto;
position:relative;
background:#fff;
min-height:100%;
width:967px;
height:auto !important;
height:100%;
min-height:100%;
border: 1px solid #000;
}

#footer {
margin-right:auto;
margin-left:auto;
position:relative;
height:40px;
margin-top: -40px;
width: 967px;
}
.main {
float:left;
}

Edited by jumancy
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

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