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 中国語 Web サイトの他の関連記事を参照してください。