First off, I must apologize. CSS positioning has always been the bane of my existence and this is likely something simple that I'm just completely missing...
Anyway, I have a JS script that's generating divs. Each div is within the parent #container which is absolute positioned. CSS below:
#container{
position: absolute;
}
#container div{
position: relative;
}
The function creating the divs is:
function newLine(){
var id_num = ++line;
var _new;
var i;
for(i = 0; i < width; i++){
_new = document.createElement('div');
_new.innerHTML = randomChar();
_new.id = id_num;
_new.style.left = i*10+'px';
_new.style.top = 0;
document.getElementById('container').appendChild(_new);
}
}
Everything above is properly initialized. The left positioning works perfectly. The only issue is the vertical positioning. Instead of all the row displaying next to each other, they're progressively increasing away from the top of the div. I'm sure this is something trivial that I'm completely looking over, but I'm stumped... Help would be very much appreciated!
<div>'s act as block-level elements and will effectively consumewidth:100%unless youdisplay:inline-blockorfloatthem (though, depending upon what you know about their contents, you may be better off making them absolutely-positioned). – danlefree Apr 23 '12 at 2:00div's andpositionstyle declarations work?" - is too general for StackOverflow (though I've made an attempt to answer it in the close comment). – danlefree Aug 6 '12 at 2:59