使用 HTML5 的
.div-table { display: table; width: auto; background-color: #eee; border: 1px solid #666666; border-spacing: 5px; /* cellspacing: poor IE support for this */ } .div-table-row { display: table-row; width: auto; clear: both; } .div-table-col { float: left; /* fix for buggy browsers */ display: table-column; width: 200px; background-color: #ccc; }
<body> <form>
此代码片段将创建一个包含指定标题和数据的表格,并在 Internet Explorer 7 及更高版本等浏览器中正确显示它。通过利用
以上是如何仅使用 `` 和 CSS 创建表格?的详细内容。更多信息请关注PHP中文网其他相关文章!