Jump to content
  • 0

css резиновый div


Zzz_
 Share

Question

Вот, есть 2 div'a (float:left) у одного ширина 500px, как сделать что бы другой занял все оставшееся место на странице(min-width: 500px;max-width: 720px) и растягивался с ней, а первый оставался неподвижным?

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0


<style type="text/css">
.one{
width: 500px;height: 100px;
background: #f00;
float: left;
}
.two{
min-width: 500px;
max-width: 1800px;
height: 100px;
background: #ff0;
float: left;
}
</style>
</head>
<body>
<div style="width: 100%;height: 500px;">
<div class="one"></div>
<div class="two"></div>
</div>
</body>

Как сделать что бы .two растягивался на все ширину и потом сжимался? у меня он больше min-width: не растягивается?

Link to comment
Share on other sites

  • 0

правильно не растягивается. у .two float:left; установлен. Самое просто убрать float и поставить overflow:hidden;. Но это не очень хороший способ, даже я бы сказал плоховатый

  • Like 1
Link to comment
Share on other sites

  • 0

Можно ещё сделать так:

http://jsfiddle.net/villard/uJHmM/

<div style="clear: both;"> как вариант очистки взят лишь из-за простоты.


<style type="text/css">
.one{
width: 500px;height: 100px;
background: #f00;
float: left;
}
.two{
min-width: 500px;
max-width: 1800px;
height: 100px;
background: #ff0;
float: left;
}
</style>
</head>
<body>
<div style="width: 100%;height: 500px;">
<div class="one"></div>
<div class="two"></div>
</div>
</body>

Как сделать что бы .two растягивался на все ширину и потом сжимался? у меня он больше min-width: не растягивается?

Если упрощённо: элемент плавающий удалён из потока и у него всё немного "по-другому" с шириной. Заметьте, во всех 3-х примерах резиновый блок не плавающий.

  • Like 1
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