Relative positioning in Safari - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T05:12:10Z http://stackoverflow.com/feeds/question/291189 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/291189/relative-positioning-in-safari 0 Relative positioning in Safari roman m 2008-11-14T19:55:03Z 2008-11-14T21:03:42Z <p>It has to be simple, here's my CSS: </p> <pre><code>.progressImage { position:relative; top:50%; } .progressPanel { height:100%; width:100%; text-align:center; display:none; } &lt;asp:Panel ID="pnlProgress" runat="server" CssClass="progressPanel"&gt; &lt;asp:Image ID="Image1" runat="server" CssClass="progressImage" ImageUrl="~/Images/Icons/loading.gif" /&gt; &lt;/asp:Panel&gt; </code></pre> <p>I toggle panel display depending on user action.</p> <p>Works great in FireFox, but shows up at the top of the page in Safari.</p> <p>p.s. "vertical-align:middle;" doesn't work either. </p> <p>p.p.s. setting "position:relative;" on the panel doesn't work, setting "position:relative;" on the panel and "position:absolute;" on the image breaks it in FF and does nothing in Safari</p> <p>THIS WORKED:</p> <pre><code>.progressPanel { height:100%; width:100%; position:relative; } .progressImage { position:absolute; top:50%; left:50%; } </code></pre> http://stackoverflow.com/questions/291189/relative-positioning-in-safari/291245#291245 0 Answer by Mauro for Relative positioning in Safari Mauro 2008-11-14T20:13:18Z 2008-11-14T20:46:04Z <p>Ensure the parents container is also set to position: relative and has a height specified, without it the position wont work correctly.</p> <pre><code>.progressPanel { height:100%; width:100%; text-align:center; display:none; position: relative; } </code></pre> <p>alternatively, why not set the background property of the panel to your gif?</p> <pre><code>background: url('path/to/image.gif') no-repeat center middle; </code></pre> <p>That will always be centered.</p> http://stackoverflow.com/questions/291189/relative-positioning-in-safari/291288#291288 1 Answer by Chris Marasti-Georg for Relative positioning in Safari Chris Marasti-Georg 2008-11-14T20:26:00Z 2008-11-14T21:03:42Z <p>Set the position of <code>.progressPanel</code> to relative, and the position of <code>.progressImage</code> to absolute. The following works for me in FF, IE, Safari. Set the negative margins to half the width/height of your image for perfect centering. Note that some parent of the progressPanel (body in this case) needs a height so that the progressPanel can fill it.</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"&gt; &lt;head&gt; &lt;title&gt;Test&lt;/title&gt; &lt;style type="text/css"&gt; body { height:700px; } .progressImage { position:absolute; top:50%; left:50%; margin-left:-16px; margin-top:-16px; } .progressPanel { position:relative; height:100%; width:100%; text-align:center; background:red; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div class="progressPanel"&gt;&lt;img class="progressImage" src="pic.jpg"/&gt;&lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre>