使用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中文網其他相關文章!