天天看點

table中的display

table    { display: table }
tr       { display: table-row }
thead    { display: table-header-group }
tbody    { display: table-row-group }
tfoot    { display: table-footer-group }
col      { display: table-column }
colgroup { display: table-column-group }
td, th   { display: table-cell }
caption  { display: table-caption }
           
  • table:指定對象作為塊元素級的表格。類同于html标簽(CSS2)
  • inline-table:指定對象作為内聯元素級的表格。類同于html标簽(CSS2)
  • table-caption:指定對象作為表格标題。類同于html标簽(CSS2)
  • table-cell:指定對象作為表格單元格。類同于html标簽(CSS2)
  • table-row-group:指定對象作為表格行組。類同于html标簽(CSS2)
  • table-header-group:指定對象作為表格标題組。類同于html标簽(CSS2)
  • table-footer-group:指定對象作為表格腳注組。類同于html标簽(CSS2)