搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
CSS 教程
CSS 基础教程
源代码
清空
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS表格布局table-layout 属性示例</title> <style> table { width: 250px; border-collapse: separate; } table, tr, th, td{ border: 1px solid #000000; } .auto { table-layout: auto; } .fixed { table-layout: fixed; } td{ width: 50%; } </style> </head> <body> <table class="auto"> <caption>Example 1. Auto</caption> <tr> <th>Name</th> <td>John Carter</td> </tr> <tr> <th>Email</th> <td>johncarter@mail.com</td> </tr> </table> <br> <table class="fixed"> <caption>Example 2. Fixed</caption> <tr> <th>Name</th> <td>Peter Parker</td> </tr> <tr> <th>Email</th> <td>peterparker@mail.com</td> </tr> </table> <p><strong>注意:</strong> 您可以看到,表格单元格的宽度没有改变,以适应固定表格布局中的内容.</p> </body> </html>
运行结果