Jump to content
  • 0

Проблема


Webkit
 Share

Question

Добрый вечер!

Как сделать чтобы элемент #after шел после содержимого #inner элемента #block с фиксированной высотой?

<style>
#block {
background: #fcc;
height: 10px;
}
#inner {
background: #ccf;
height: 30px;
width: 10px;
}
#after {
background: #cfc;
height: 10px;
}
</style>
<div id="block">
<div id="inner"></div>
</div>
<div id="after"></div>

Как есть и как должно быть:

qwe.1332955956.gif

Модель образная, высота #inner в 30px взята случайно поэтому просто использовать margin-bottom: 20px нельзя. Порядок элементов тоже нельзя изменить.

Edited by Webkit
Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Вот, как вариант..

<style>
#block {
background: #fcc;
height: 10px;
width:10px;
float:left;
}
#inner {
background: #ccf;
height: 30px;
width: 10px;
float:left;

}
#after {
background: #cfc;
height: 10px;
}
</style>

<div id="inner"></div>
<div id="block"></div>
<div style="clear: left;">
<div id="after"></div>

Edited by fr1run
Link to comment
Share on other sites

  • 0

Вот, как вариант..

<style>
#block {
background: #fcc;
height: 10px;
width:10px;
float:left;
}
#inner {
background: #ccf;
height: 30px;
width: 10px;
float:left;

}
#after {
background: #cfc;
height: 10px;
}
</style>

<div id="inner"></div>
<div id="block"></div>
<div style="clear: left;">
<div id="after"></div>

Порядок элементов тоже нельзя изменить.
Edited by Webkit
Link to comment
Share on other sites

  • 0
<style>
#block {
background: #fcc;
height: 10px;
}
#inner {
background: #ccf;
height: 30px;
width: 10px;
float: left;
}
#after {
background: #cfc;
height: 10px;
clear: both;
}
</style>
<div id="block">
<div id="inner"></div>
</div>
<div id="after"></div>

То что надо! Спасибо.

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