开发者

Is there a semantic equivalent of th for ul?

<table>
<tr><th>Tags</th></tr>
<tr><td>c#</td></tr>
<tr><td>java</td></tr>
<tr><td>php</td></tr>
</table>

Is there a semantically equivalent way to express the th when using a ul?

<ul>
<li><h1>Tags</h1></li开发者_开发百科> <!-- this isn't really a list item -->
<li>c#</li>
<li>java</li>
<li>php</li>
</ul>


Well, there's always:

<h1>Tags</h1>
<ul>
    <li>c#</li>
    <li>java</li>
    <li>php</li>
</ul>


What about definition lists?

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜