I know this question will sound very simple, but I just can't fix it. I have a div container and I'm trying to put the child div to the right. I tried positioning the container div with relative, and then positioning the child div with the absolute, but the parent div loses its width. 
please take a look at the image above, I need div1 to be located directly from divContainer. I have other nested divs in divContainer, I only need div1 to be placed on the right.
div#divContainer{ margin-left:auto; margin-right:auto; top: 0px; width:1000px; background:#666; position:relative; } div#div1{ height:45px;width:200px; background:yellow; position:absolute; }
HTML CODE
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title></title> </head> <body> <div id="divContainer"> <div id="div1"></div> </div> </body> </html>
source share