首頁 > web前端 > css教學 > HTML的表格樣式

HTML的表格樣式

php中世界最好的语言
發布: 2018-05-15 13:51:37
原創
4455 人瀏覽過

跟大家分享一個好看的HTML的表格樣式,這個表格每個格子裡都有背景圖,


#首先你需要下載兩張張圖,

cell-blue.jpg

#cell-grey.jpg

命名為cell-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(&#39;cell-blue.jpg&#39;);
border-width: 1px;
padding: 8px;
border-style: solid;
border-color: #999999;
}
table.imagetable td {
background:#dcddc0 url(&#39;cell-grey.jpg&#39;);
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中文網其它相關文章!

相關閱讀:

class與id有什麼區別

怎麼讓網頁變黑白色

#HTML網頁字型大小的設定

#

以上是HTML的表格樣式的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板