# CSS表格- < table > ```htmlmixed= <table> <caption>表格標題</caption>#每個table只有一個caption宣告 <thead> #表頭標籤 <tr> <th>預設粗體</th> #表頭單元 </tr> </thead> <tbody> #中間資料標籤 <tr> <td>資料</td> #資料內容 </tr> </tbody> <tfoot> #最後列標籤 <tr> <td>資料</td> </tr> </tfoot> </table> ``` ```cosplan```:合併橫跨行(colums)的數量,`<th colspan=''></th>` ```rowspan```:合併橫跨列(row)的數量,`<th rowspan=''></th>` ```caption-side```:調整標題位置,默認top表格上方,bottom表格下方,inherit繼承父層 ```text-align```:調整標題位置左右置中 不論排列順序,網頁顯示一律以thead、tbody、tfoot順序顯示