ここで、古い問題を再検討します。メイン コンテンツが中央にあり、両側にサイドバーがあり、メイン コンテンツが HTML マークアップの最初にある 3 列のレイアウトを作成するにはどうすればよいですか?
<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>