このテーブルの各セルには背景画像があります
まず 2 つの画像
cell-blue.jpg をダウンロードする必要があります。
cell-grey.jpgcell-blue.jpg と cell-grey.jpg という名前を付けます
以下のコードを必要な場所にコピーします。画像の URL を忘れずに変更してください
<!-- CSS goes in the document HEAD or added to your external stylesheet --> <style type="text/css"> table.imagetable { font-family: verdana,arial,sans-serif; font-size:11px; color:#333333; border-width: 1px; border-color: #999999; border-collapse: collapse; } table.imagetable th { background:#b5cfd2 url('cell-blue.jpg'); border-width: 1px; padding: 8px; border-style: solid; border-color: #999999; } table.imagetable td { background:#dcddc0 url('cell-grey.jpg'); border-width: 1px; padding: 8px; border-style: solid; border-color: #999999; } </style> <!-- Table goes in the document BODY --> <table class="imagetable"> <tr> <th>Info Header 1</th><th>Info Header 2</th><th>Info Header 3</th> </tr> <tr> <td>Text 1A</td><td>Text 1B</td><td>Text 1C</td> </tr> <tr> <td>Text 2A</td><td>Text 2B</td><td>Text 2C</td> </tr> </table>
必要な友達はそれを使用できますよりエキサイティングなコンテンツについては、php 中国語 Web サイトの他の関連記事にご注意ください。
関連記事:
クラスとIDの違いは何ですかWebページを白黒にする方法HTML Webページのフォントサイズを設定する以上がHTMLテーブルスタイルの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。