html - CSS Div Alignment and Positioning -
i'm trying create page similar this: http://bit.ly/1t8xgqp specifically, i'm talking row guy in kitchen. as envisage it, row consists of text container , image container encapsulated within row container. when window made smaller,the image appears move behind text column. when window made larger, text column sticks side of image column. image column sticks right side of screen @ times. i have been unable create this. here code: html <div id="row_container"> <div id="image_container"> <img src="images/1297x756_image.jpg" width="1297px" height="756px" border="0" /> </div> <div id="text_container"> text </div> </div> css #row_container { width: 100% height: 756px; background-color:black; position:relative; } #image_container{ width: 1297px; height: 756px; background-color:#03c; position:absolute; right: 0; } #text_c...