--- title: slug: Web/CSS/display-internal tags: - CSS数据类型 - CSS显示 - 参考 - 显示内部 translation_of: Web/CSS/display-internal ---
 

一些布局模型,例如  table 并且ruby具有复杂的内部结构,具有他们的孩子和后代可以填充的几个不同的角色。此页面定义了那些“内部”显示值,这些值仅在该特定布局模式中具有意义。

语法

除非另有说明,否则使用这些显示值的元素的内部显示类型和外部显示类型都将设置为给定的关键字。

table-row-group
这些元素的行为类似于<tbody>HTML元素。
table-header-group
这些元素的行为类似于<thead>HTML元素。
table-footer-group
这些元素的行为类似于<tfoot>HTML元素。
table-row
这些元素的行为类似于<tr>HTML元素。
table-cell
这些元素的行为类似于<td>HTML元素。
table-column-group
这些元素的行为类似于<colgroup>HTML元素。
table-column
这些元素的行为类似于<col>HTML元素。
table-caption
这些元素的行为类似于<caption>HTML元素。
ruby-base {{Experimental_Inline}}
这些元素的行为类似于<rb>HTML元素。
ruby-text {{Experimental_Inline}}
这些元素的行为类似于<rt>HTML元素。
ruby-base-container {{Experimental_Inline}}
这些元素的行为类似于<rbc>匿名框生成的HTML元素。
ruby-text-container {{Experimental_Inline}}
这些元素的行为类似于<rtc>HTML元素。

浏览器兼容性编辑

支持表值

table, table-cell, table-column, table-column-group, table-footer-group, table-header-group, table-row, and table-row-group

{{Compat("css.properties.display.table_values", 10)}}

支持ruby值

ruby, ruby-base, ruby-base-container, ruby-text, and ruby-text-container

{{Compat("css.properties.display.ruby_values", 10)}}

另请参见