这里重温一个老问题。如何开发一个三栏布局,其中主要内容在中间,两侧有侧边栏,但主要内容在 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>