background:#bfa url(img、3) center center no-repeat fixed
如上,背景可同时设置多种但单项背景补充必须在此之下,否则无效
表格:caption表示表格的标题
<table>创建表格
<thead>表格的头部
<tr>表格中的一行
<th>表头
<td>表格中的一个单元格
<tbody>表格的主体
<tr>
<th>
<td>
<tfoot>表格的底部
<tr>
<th>
<td>
colspan:横向合并 (在th或td
rowspan:纵向合并 中实现)
设置单行或双行:tr:odd:nth-child(odd\even){设置样式内容}
text-align:设置文本的水平对齐。
vertical-align:设置文本的垂直对齐。
可选值:top、baseline、middle、bottom
border-spacing:边框间距
border-collapse:合并边框
collapse:合并边框
separate:不合并边框
完善clearfix:
/*解决父子元素外边距重叠*/
.box1:before{
content: "";
display: table;
}
/*解决高度塌陷与垂直重叠*/
.clearfix:before,
.clearfix:after{
content: "";
display: table;
clear:both;
}
.clearfix{
zoom:1;
}