Jump to content
  • 0

Верстка div'ом в 2 столбца


rolph
 Share

Question

Подскажите, пожалуйста,

есть div, который выводится динамически, т.е. блок с инфой размером 250px; родительский div - 500px.

надо выводить по 2 столбца.

Сейчас выводит всё в 1 столбец.

#single_block {
clear: left;
margin: 15px 10px;
width: 250px;
}

#single_block img {
float: left;
margin: 0 7px 7px 0;
}

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0
у Вас внутренние блоки не вмещаются во внешний, исходя их css размер 2-х внутренних блоков занимает 540px

Внешний div

#rightcolumn { 
float: right;
color: #333;
margin: 0px 0px 5px 0px;
padding: 10px;
width: 678px;
display: inline;
}

Link to comment
Share on other sites

  • 0
добавьте еще сюда display: inline-block

для ie6 переопределите на display: inline

и clear: left уберите

Сделал

#single_block {
margin: 15px 10px;
width: 250px;
float: left;
display: inline-block;
}

а для IE6 в <head>

<!--[if lte IE 6]>

<style type="text/css" media="screen, tv, projection">

#single_block {

margin: 15px 10px;

width: 250px;

float: left;

display: inline;

}

</style>

<![endif]-->

Отражается вроде нормально, но в первом столбце иногда пропускает место. _ttp://www.devilbiss.ru/index.php?id=11

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