<ol>
<li>
<ul>
<li><img src="path-to-gravatar.gif" alt="Author's name" /></li>
<li><a href="url-to-authors-homepage.html">Author's name</a></li> <li>posted on date-goes-here</li>
</ul>
<div>Comment text goes here...</div>
</li>
</ol>
五、label/input:div 对 其他标签元素
给label/input外镶嵌父结构,什么标签元素才是最好的选择那?
<label for="contactName">Your Name</label>
<input type="text" name="contactName" id="contactName" />使用恰当的标签代码在以前是可以探讨的,但现在我还是选择了用div来镶嵌label/input,label和与之相关联的被看做一个整体。div元素拥有很广的语义特性,同时它可以适应任何形势。
<div>
<label for="contactName">Your Name</label>
<input type="text" name="contactName" id="contactName" />
</div>中文原文:我的5个html编写偏好
英文原文:My Top 5 HTML Coding Preferences









