table样式
<table border="1" width="400px" height="200px">
<caption>完整table</caption> //标题
<thead>
<tr>
<th>头</th>
<th>部</th>
</tr>
</thead>
<tbody>
<tr>
<td>身</td>
<td>体</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2">底部</td> //横向合并
</tr>
</tfoot>
</table>
css样式:
- width height——仅table和td使用
- align水平对齐——table+tr+td
- valign垂直对齐——tr+td
- cellpadding cellspacing内外边距——table
注:thead/tbody/tfoot是不可见元素 无法给它们设置属性
细线表格:
table{ background-color: black; }
tr{ background-color: white; }
另外table加上 cellspacing='1'
若指定了 thead 和 tfoot,则其有默认高度 不随 table 设置高度改变
rowspan 和 colspan 只是向下和向后合并
相关阅读
a,是anchor(锚)的第一个字母,就是链接啦! a 标签 -- 代表HTML链接 * a标签是成对出现的,以<a>开始, </a>结束 * 属性. o Common -
转义分为escapeHTML和unescapeHTML,先看两个函数的实现
/** * @function escapeHTML 转义html脚本 < > & " ' * @param a - * 字符串 */ escapeHTML: function(a){
1.图文解析 https://pc.qq.com/ 效果图: 代码块 <!--别人的--> <!--在设置下边框的时候给他一个box-shadow (box-shadow:
这里面有许多简洁的html背景界面,对,重要的是简洁,而且很好看,very nice: https://www.toptal.com/designers/subtlepatterns/ 可能需
最近在Android上的一个项目中需要用到VCard的一些东西,发现其中有一部分关于Quoted-Printable编码的部分稍微有点棘手,主要是看起来