Hey all,
first of all nice website.
I'm working on a code whithout page refresh using javascript fadeIn and fadeOut,
for that i'm using div's on top of eachother and they can have different heights.
because they're on top of eachother they need to have a absolute position.
<style>
.container {
width:275px;
min-height:300px;
border:1px solid #000;
position:absolute;
}
#wrapper {
//Must wrap around this div's
}
</style>
<div "wrapper">
<div id="1" class="container">some tekst</div>
<div id="2" class="container">some more tekst</div>
<div id="3" class="container">some more tekst</div>
<div id="4" class="container">some more tekst</div>
<div id="5" class="container">some more tekst</div>
</div>
So you've probably noticed.. i need to wrap around this unknown height.
Any tips or 'you can do it else' 's?
some example in jsfiddle ( or some same site ) would be nice..