how to position divs within another div
问题 I want to position divs within another div. Here's the relevant snippet of css (full example on cssdesk): .textblock-container { width: 500px; height: 500px; border: 1px solid red; } div.textblock { width: 100px; height: 100px; line-height: 100px; border: 1px solid black; position: absolute; text-align: center; background: rgb(0, 150, 0); /* Fall-back for browsers that don't support rgba */ background: rgba(0, 150, 0, .5); } and the relevant snippet of html: <div id='blockdiv1' class=