Position An HTML Element Relative to its Container Using CSS - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T20:22:57Z http://stackoverflow.com/feeds/question/104953 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/104953/position-an-html-element-relative-to-its-container-using-css 6 Position An HTML Element Relative to its Container Using CSS Craig Walker 2008-09-19T19:48:22Z 2009-10-19T13:44:41Z <p>I'm trying to create a horizontal 100% stacked-bar graph using HTML and CSS. I'd like to create the bars using DIVs with background colors and percentage widths depending on the values I want to graph. I also want to have a grid lines to mark an arbitrary position along the graph.</p> <p>In my experimentation, I've already gotten the bars to stack horizontally by assigning the css property float: left. However, I'd like to avoid that, as it really seems to mess with the layout in confusing ways. Also, the grid lines don't seem to work very well when the bars are floated.</p> <p>I think that CSS positioning should be able to handle this, but I don't yet know how to do it. I want to be able to specify the position of several elements relative to the top-left corner of their container. I run into this sort of issue regularly (even outside of this particular graph project), so I'd like a method that's:</p> <ol> <li>Cross-browser (ideally without too many browser hacks)</li> <li>Runs in Quirks mode</li> <li>As clear/clean as possible, to facilitate customizations</li> <li>Done without Javascript if possible.</li> </ol> http://stackoverflow.com/questions/104953/position-an-html-element-relative-to-its-container-using-css/104965#104965 2 Answer by Stephen Deken for Position An HTML Element Relative to its Container Using CSS Stephen Deken 2008-09-19T19:50:53Z 2008-09-19T19:50:53Z <p>You have to explicitly set the position of the parent container along with the position of the child container. The typical way to do that is something like this:</p> <pre><code>div.parent { position: relative; left: 0px; // stick it wherever it was positioned by default top: 0px; } div.child { position: absolute; left: 10px; top: 10px; } </code></pre> http://stackoverflow.com/questions/104953/position-an-html-element-relative-to-its-container-using-css/104981#104981 1 Answer by Jim for Position An HTML Element Relative to its Container Using CSS Jim 2008-09-19T19:53:05Z 2008-09-19T19:53:05Z <p>Absolute positioning positions an element relative to its nearest positioned ancestor. So put <code>position: relative</code> on the container, then for child elements, <code>top</code> and <code>left</code> will be relative to the top-left of the container so long as the child elements have <code>position: absolute</code>. More information is available in <a href="http://www.w3.org/TR/CSS21/visuren.html#comp-abspos" rel="nofollow">the CSS 2.1 specification</a>.</p> http://stackoverflow.com/questions/104953/position-an-html-element-relative-to-its-container-using-css/105035#105035 14 Answer by Bryan M. for Position An HTML Element Relative to its Container Using CSS Bryan M. 2008-09-19T20:01:06Z 2008-09-19T20:01:06Z <p>You are right that CSS positioning is the way to go. Here's a quick run down:</p> <p><code>position: relative</code> will layout an element relative to <em>itself.</em> In other words, the elements is laid out in normal flow, then it is removed from normal flow and offset by whatever values you have specified (top, right, bottom, left). It's important to note that because it's removed from flow, other other elements around it will not shift with it (using negative margins instead of you want this behavior).</p> <p>However, you're most likely interested in <code>position: absolute</code> which will position an element relative to a container. By default, the container is the browser window, but if a parent elements either has <code>position: relative</code> or <code>position: absolute</code> set on it, then that will act as the parent for positioning coordinates for its children.</p> <p>To demonstrate:</p> <pre><code>&lt;div id="container"&gt; &lt;div id="box"&gt; &lt;/div&gt; &lt;/div&gt; #container { position: relative; } #box { position: absolute; top: 100px; left: 50px; } </code></pre> <p>So in that example. the top left corner of <code>#box</code> would be 100px down and 50px left of the top left corner of <code>#container</code>. If <code>#container</code> did not have <code>position: relative</code> set, the coordinates of <code>#box</code> would be relative to the top left corner of the browser view port.</p> <p>Hope that helps.</p> http://stackoverflow.com/questions/104953/position-an-html-element-relative-to-its-container-using-css/105379#105379 0 Answer by Jonathan Arkell for Position An HTML Element Relative to its Container Using CSS Jonathan Arkell 2008-09-19T20:35:22Z 2008-09-19T20:35:22Z <p>This should to exactly what you need. </p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;&lt;/title&gt; &lt;/head&gt; &lt;style type="text/css"&gt; #container { position: relative; width: 600px; overflow: hidden; } .bar { float:left; height: 20px; border: 1px solid #cc0; background-color: #ff8; margin: 10px 600px 0 0} &lt;/style&gt; &lt;body&gt; &lt;div id="container"&gt; &lt;div class="bar" style="width: 88%;"&gt;&lt;/div&gt; &lt;div class="bar" style="width: 50%;"&gt;&lt;/div&gt; &lt;div class="bar" style="width: 90%;"&gt;&lt;/div&gt; &lt;div class="bar" style="width: 1%;"&gt;&lt;/div&gt; &lt;div class="bar" style="width: 23%;"&gt;&lt;/div&gt; &lt;div class="bar" style="width: 1%;"&gt;&lt;/div&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>It's an implementation based on floats, but the key here is the 600px margin on your boxes. This should remove the float layout problems.</p> <p>This is better then absolutely positioning because you won't have to keep track of where each bar on your graph goes on the y axis. You just let the browser position it for you nicely.</p> <p>Of course, part of the reason why you might want to avoid floats is that you have other elements on the page that are floating as well, and that is where the interference lies. The overflow:hidden on the container should prevent against some of that happening.</p> http://stackoverflow.com/questions/104953/position-an-html-element-relative-to-its-container-using-css/1588761#1588761 -1 Answer by saif for Position An HTML Element Relative to its Container Using CSS saif 2009-10-19T13:44:41Z 2009-10-19T13:44:41Z try{ debugEn(); } catch(ex){} <p>function debugEn(){ var pos = Find_Pos(document.getElementById('hotelInfoFormId:panelTabId:0:j_id441')); var left = pos[0] + 2; var top = pos[1] + 2; document.getElementById('imagePanelPopup').style.left = left + 'px'; document.getElementById('imagePanelPopup').style.top = top + 'px'; }</p> <p>insert script code inside element u want to postion it(it has imagePanelPopup ) related to (hotelInfoFormId:panelTabId:0:j_id441) and add debugEn() function to html page body</p>