簡寫背景屬性:
background:#bfa url(img/123.png) center no-repeat fixed;(無順序要求)
表格: <th>表頭標(biāo)簽 會加粗
<table>
<tr>
<td>a</td>(單元格)
</tr>
</table>
有幾行寫幾行tr
align=center居中
橫合并單元格:colspan <td colspan='2'>D3</td>
縱合并單元格:rowspan <td rowspan='2'>D4</td>
table是塊元素
border-spacing:0px; 表內(nèi)單線
border-collapse:collapse; 表格邊框合并
奇數(shù)行變紅
tr:nth-child(odd){
background-color:red;
}
even偶數(shù)
移到變藍(lán)
tr:hover{
background-color:blue;
}
tr不是table直接子元素橙喘,是tbody直接子元素
長表格
<table>
<thead></thead> 放表頭
<tbody></tbody>
<tfoot></tfoot>
</table>
表格列數(shù)由td最多的一行決定
表單:用來向服務(wù)器提交信息的
input使用最多的表單項(xiàng)
type屬性可選值:
text:文本框
password:密碼框
submit:提交按鈕
radio:單選按鈕
checkbox:多選框
reset:重置選框
select:創(chuàng)建一個下拉列表
option:下拉列表中列表項(xiàng)
optgroup:為列表項(xiàng)分組