-----------------------------------------------------------表格样式重置-----------------------------------------------------
表格标签:
table表格
thead表头
tbody表身
tfoot表尾
tr行
th表头单元格
td其他单元格
表格样式重置:
table{border-collapse:collapse}单元格间隙合并
th,td{padding:0;}重置单元格默认填充
colspan规定单元格可横跨的列数
<td colspan="2"></d>
rowspan属性规定单元格可横跨的行数。
<td rowspan="2"></td>
---------------------------------------------------表单/表单元素------------------------------------------------------------
form表单
<input type="">
label标签为 input 元素定义标注
<input type="" id="a"/>
<lable for="a">........</lable>
textarea文本域
各个浏览器下的默认滚动条显示不兼容
css3新增 resize 调整尺寸属性;
outline 轮廓线
A标签轮廓线去除方法:
1、<a href="#" onfocus="this.blur();"></a>
2、<a href="#" hidefocus>..........</a>
表单元素兼容性问题
IE6下input背景滚动