css table-layout属性用于为表设置表格布局时所用的布局算法。固定布局算法比较快,但是不太灵活,而自动算法比较慢,不过更能反映传统的 HTML 表。所有浏览器都支持 table-layout 属性。
css table-layout属性怎么用?
table-layout属性为表设置表格布局算法。
语法:
table-layout:automatic|fixed|inherit;
属性值:
● automatic:默认。列宽度由单元格内容设定。
● fixed:列宽由表格宽度和列宽度设定。
● inherit:规定应该从父元素继承 table-layout 属性的值。
说明:该属性指定了完成表布局时所用的布局算法。固定布局算法比较快,但是不太灵活,而自动算法比较慢,不过更能反映传统的 HTML 表。
注释:所有浏览器都支持 table-layout 属性。任何的版本的 Internet Explorer (包括 IE8)都不支持属性值 "inherit"。
css table-layout属性 示例
<!DOCTYPE html> <html> <head> <style type="text/css"> table.one { table-layout: automatic } table.two { table-layout: fixed } </style> </head> <body> <table class="one" border="1" width="100%"> <tr> <td width="20%">1000000000000000000000000000</td> <td width="40%">10000000</td> <td width="40%">100</td> </tr> </table> <br /> <table class="two" border="1" width="100%"> <tr> <td width="20%">1000000000000000000000000000</td> <td width="40%">10000000</td> <td width="40%">100</td> </tr> </table> </body> </html>
效果图:
Atas ialah kandungan terperinci css table-layout属性怎么用. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!