I have one div element where I have all the articles. The articles themselves are div elements.
<div id='articleContainer'>
<div class='article'></div>
<div class='article'></div>
<div class='article'></div>
</div>
Here is the css for aritcleContainer
#articleContainer{
position: relative;
float:left;
width: 600px;
min-height: 600px;
padding: 50px;
}
What is the minimum condition for expanding it when I add new articles? This example works, but I just want to know what condition it can expand for itself. There are other examples that do not expand for themselves. Where I donβt know at all.
source
share