CSS table-layout 属性

CSS table-layout 属性为表设置表格布局算法

默认值 auto
继承 no
版本 CSS2
JavaScript 语法 object.style.tableLayout="fixed"

语法

table-layout: auto | fixed | inherit

属性值

描述
auto 默认。列宽度由单元格内容设定
fixed 列宽由表格宽度和列宽度设定
inherit 规定应该从父元素继承 table-layout 属性的值

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主流浏览器都支持 table-layout 属性

IE7 和更早的版本不支持 "inherit" 的值
IE8 需要定义 <DOCTYPE html>
IE9 支持 "inherit"

范例

设置表格的布局算法

table {
    table-layout:fixed;
}

运行范例 »

相关文章

CSS 基础教程 CSS 表格

CSS 参考手册

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.