English 中文(简体)
传真(5ish): 2. 如何在某一条款中相互担保
原标题:HTML (5ish): How to semantically interpose a gallery in an article

典型条款: 我想展示一篇文章,其中主要有几处嵌入的图像或媒体档案。

典型的美术馆: 我也想展示与本条专题有关的(非常)形象。 为这一问题的目的,请相信书状是对本条所用关键词进行20次点击。

The train wreck: The mini-gallery should cut the article right after the lead, and the article should continue below the mini-gallery.

我也这样说:

<div id="lead">yadda</div>
<div id="mini-gallery">img s</div>
<div id="paras">yadda</div>

当最近第html5号公告开始告诉我时,这只是错的,你是:<>。 (引自Ceroku, 速记)

因此,在进行一些搜查之后,问题依然存在......是否存在着“从”电离层扰动或什么?

问题回答

难道这种调子答案吗?

<article id="feature">
    <header>Article Title and whatnot</header>
    <section id="lead">Lion eats Youtube persona...</section>
    <aside id="mini-gallery">img s</aside>
    <section id="paras">grisly details, twitter trending of said details, etc...</section>
</article>

问题是,这一搁置是“一边”的,而且我的理解是,它不应放在其无关紧要的条款中......

无论如何,本条:http://html5doctor.com/aside-revisited/ 似乎认为,可以把一 aside放在一条中,而不能仅仅与它有实质性的联系。 因此,我认为有一个更好的选择。





相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!