這裏是重訪一個老問題。我如何開發一個三列布局,其中主要內容在中間,每邊都有側邊欄,但主要內容首先在HTML標記中?三列內容第一個
<body>
<section id="main">
<h1>Main Section Title</h1>
<img src="http://placehold.it/400x300" />
<p>This is the main content most important to readers</p>
</section>
<aside id="highlights"><!-- left column -->
<h2>Highlights</h2>
news feed goes here...
</aside><!-- end left column -->
<aside id="participate"><!-- right column -->
<h2>social Network</h2>
social media links here...
<h2>Events</h2>
events listing here...
</aside><!-- end right column -->
</body>
相關觀察:我碰到ARIA-角色信息,既解決了可訪問性問題來了在http://www.w3.org/TR/wai-aria/roles#document_structure_roles – mike