Jump to content
  • 0

2 div в одну линию при неизвестной ширине родительского div


Nilagor
 Share

Question

есть примерно такая ситуация

<div class="0">

<div class="1"> </div>

<div class="2"> </div>

</div>

div.1 {

float: left;

width: auto;

}

div.2 {

float: left;

width: 83%;

}

Ширина div.0 не известна, т.к. это схема организации комментариев, а при "комментарии на комментарий" div.0 смещается вправо и соответственно сужается. Можно ли сделать так, что бы div.2 растягивался на всю ширину от правого края div.1 до правого края div.0?

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

зачем ему ширина если хочешь его растягивать?

ширину нужно диву 1 задавать

в каком из дивов будут комментарии?

Ширина у него прописана чисто что бы была =)

в первом диве только аватар, во втором автор, дата, текст комента и ссылки (ответить, удалить и тп)

Link to comment
Share on other sites

  • 0
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
body,html{margin:0;padding:0;}
.left{float:left;width:100px;}
.right{margin-left:100px;}
</style>
</head>
<body>
<div class="wrap">
<div class="left">left </div>
<div class="right">right </div>
</div>
</body>
</html>

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