Jump to content
  • 0

Две колонки


depode
 Share

Question

Здравствуйте, помогите решить проблему. CSS недавно начал осваивать.

Нужно что бы блоки news и menu обтекались блоком content

а получается вот что

142696.jpg

CSS

#container {
width: 875px;

}

#top {

background:url(../images/top.jpg) no-repeat #000000;
width:875px;
height:427px;
}

#speedbar .leftb {
width: 115px;
height: 32px;
float: left;
color: white;
background:url(../images/b_l.gif) no-repeat #000000;
}

#speedbar .centerb {
height: 32px;
width: 732px;
background:url(../images/b_c.gif) repeat #000000;
margin-left: 0px;
float: left;
}

#speedbar .rightb {
height: 32px;
background:url(../images/b_r.gif) no-repeat #000000;
float: left;
margin-left: 0px;
width: 28px;
}


#content {
clear:both;
width:875px;
background:#000000;
}



#content .news{
width: 580px;
background-color:#151316;
margin:5px;
padding:0;
float: left;
}

#content .menu{


}

HTML

<body>
<div align="center">
<div id="container">
<div id="top"></div>
<div id="speedbar">
<div class="leftb"></div>
<div class="centerb"></div>
<div class="rightb"></div>
</div>
<div id="content">
<div class="news">
<p>материал </p>
<p>материал</p>

</div>
<div class="menu">
меню </div>
</div>
<div>
<div>
</body>

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0
в оранжевом блоке сделайте последним блоком следующий:

<div style="clear:both"></div>

Уже прописал в стилях

#content {

clear:both;

width:875px;

background:#000000;

}

Вот полная схема, нужно красный в лево сместить, а зелёный вправо, и блок #content был на заднем фоне

142727.jpg

Link to comment
Share on other sites

  • 0

Вы нарисуйте как должно быть, а то не понятно что куда сместить...

А на будущее знайте, что плавующие блоки (это когда float влево или вправо) выпадают из общего потока, и чтобы их увидел родительский блок и растянулся, надо ему назначить overflow:hidden; и не нужно всяких лишних дивов делать.

Link to comment
Share on other sites

  • 0
Вы нарисуйте как должно быть, а то не понятно что куда сместить...

А на будущее знайте, что плавующие блоки (это когда float влево или вправо) выпадают из общего потока, и чтобы их увидел родительский блок и растянулся, надо ему назначить overflow:hidden; и не нужно всяких лишних дивов делать.

Спасибо, разобрался, теперь буду знать :D

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