1. 程式人生 > 其它 >CSS表格樣式

CSS表格樣式

技術標籤:css學習csshtmlcss3

CSS表格樣式

1.表格標題位置

caption-side:取值;

top 頂部(預設值)
bottom 底部

在table/caption元素中定義。

2.表格邊框合併

border-collapse:取值;

seperate 分離(預設值)
collapse 合併

在table元素中定義。

3.表格邊框間距

border-spacing:畫素值;

在table元素中定義。

例:

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8"
/>
<title></title> <style type="text/css"> table,th,td{border:1px solid silver;} table{ border-spacing: 8px; border-collapse: collapse; caption-side: bottom; } </style> </head> <body> <table> <caption
>
表格標題</caption> <!--表頭--> <thead> <tr> <th>表頭單元格1</th> <th>表頭單元格2</th> </tr> </thead> <!--表身--> <tbody> <tr> <
td
>
錶行單元格1</td> <td>錶行單元格2</td> </tr> <tr> <td>錶行單元格3</td> <td>錶行單元格4</td> </tr> </tbody> <!--表腳--> <tfoot> <tr> <td>錶行單元格5</td> <td>錶行單元格6</td> </tr> </tfoot> </table> </body> </html>

效果:
在這裡插入圖片描述