Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>I agree with Hyperboreus above, trying to make the site exactly the same in all browsers is a recipe for a headache. </p> <p>But, I've often used xscope (<a href="http://iconfactory.com/software/xscope" rel="nofollow">http://iconfactory.com/software/xscope</a>) to overlay guidelines and grids on my mac to line things up. It's not free, but it's well worth the $25. </p> <p>Edit: Just saw your code. If you're just trying to get the logo and nav on the same line, try something like this: </p> <p></p> <p> </p> <pre><code>&lt;title&gt;Example&lt;/title&gt; &lt;base href="" /&gt; &lt;link rel="stylesheet" type="text/css" href="" /&gt; &lt;style type="text/css"&gt; body { margin: 0; padding: 0; } #header { background-image: url('images/bg-inner-page.gif'); height: 200px; } #logo { width: 20px; float: left; margin-top: 50px; margin-left: 100px; } #topnav { width: 500px; margin-left: 150px; margin-top: 14px; } #topnav ul { word-spacing: 10px; } #topnav ul li { list-style-type: none; display: inline; word-spacing: 10px; } #content { background-color: orange; } #footer { background-color: blue; } &lt;/style&gt; </code></pre> <p></p> <p></p> <pre><code>&lt;div id="wrapper"&gt; &lt;div id="header"&gt; &lt;div id="logo"&gt; logo &lt;/div&gt; &lt;div id="topnav"&gt; &lt;ul&gt; &lt;li&gt;home&lt;/li&gt; &lt;li&gt;about&lt;/li&gt; &lt;li&gt;browse&lt;/li&gt; &lt;li&gt;faq&lt;/li&gt; &lt;li&gt;contact&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;/div&gt; &lt;div id="content"&gt;content&lt;/div&gt; &lt;div id="footer"&gt;footer&lt;/div&gt; &lt;/div&gt; </code></pre> <p> </p> <p>You can see it here: <a href="http://jsfiddle.net/BRKrx/" rel="nofollow">http://jsfiddle.net/BRKrx/</a></p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload