Webpage layout order for my webapp - does it matter if the Sidebar is programmatically displayed bef
Posted
by Jack W-H
on Stack Overflow
See other posts from Stack Overflow
or by Jack W-H
Published on 2010-04-10T18:50:52Z
Indexed on
2010/04/10
18:53 UTC
Read the original article
Hit count: 282
OK that's the worst title I could ever possibly think up. But I'm not too sure how to phrase it!
What I mean is, is it inefficient for the browser, search engine optimisation, or any other important factors, if programmatically my float:right
ed sidebar appears in the markup before the main content div, which is set to float:left
?
To the user, the main content appears on the left, and the sidebar on the right. In the source code it appears like so:
<div id="sidebar">This is where my sidebar goes </div>
<div id="content">This is where my content goes </div>
Will this affect SEO or other factors in my page?
© Stack Overflow or respective owner