首页 > 其他 > 详细

编写高质量代码[读书笔记]

时间:2015-11-30 12:57:38      阅读:217      评论:0      收藏:0      [点我收藏+]

表单

<form action="">
<fieldset>
<legend>登陆表单</legend>
<p><label for="user">帐号:</label><input type="text" name="user" id="user"/></p>
<p><label for="password">密码:</label><input type="text" name="password" id="password"/></p>
</fieldset>
</form>

fieldset{
border:none;
}
legend {
display: none;
}

表格
<table>
<caption>页面的比较</caption>
<thead>
<tr>
<th>实现方式</th>
<th>代码量</th>
<th>搜索引擎</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>1</td>
<td>1</td>
</tr>
<tr>
<td>1</td>
<td>1</td>
<td>1</td>
</tr>
</tbody>
</table>

编写高质量代码[读书笔记]

原文:http://www.cnblogs.com/wz0107/p/5006689.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!