css table-layout属性怎么用
程序员文章站
2022-03-18 20:29:39
...
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>
效果图:
以上就是css table-layout属性怎么用的详细内容,更多请关注其它相关文章!
推荐阅读
-
ACDsee怎么用?acdsee做图像属性的教程
-
VS2019怎么设置CSS的默认属性?
-
2个属性用CSS实现图片自适应浏览器
-
怎么用css属性屏蔽鼠标事件(鼠标点击可穿透上层元素)
-
关于用图片做无序列表的项目符号,我做出来怎么是这个样子?_html/css_WEB-ITnose
-
怎么用dreamweaver做一个可以换肤的界面_html/css_WEB-ITnose
-
发现一个特效会让你有意思,有人知道这个用css可以做出来吗,怎么做?_html/css_WEB-ITnose
-
symfony怎么用css来控制表单的样式?
-
怎么用JavaScript或css在thinkPHP的模板中显示树形结构
-
jquery 固定列。怎么用% 随浏览器大小 导航条显示出来,看图不用datagrid_html/css_WEB-ITnose