html為表格裡字體改顏色的方法:先開啟對應的HTML檔案;然後找到table程式碼;最後透過設定「table .red {color:#FF0000}」屬性來修改顏色即可。
本文操作環境:windows7系統、HTML5&&CSS3版,DELL G3電腦
為html表格中的字體設定顏色,首先對td標籤class命名,然後在CSS樣式表中加入程式碼,範例如下:
<table width="80%" border="1"> <tr> <td class="red">显示红色</td> <td class="yellow">显示蓝色</td> <td class="green">显示绿色</td> </tr> </table>
樣式表如下:
<style type="text/css"> table .red {color:#FF0000} table .yellow {color:#0000FF} table .green {color:#0000FF} </style>
效果如下:
另一個方法是直接在目前標籤中嵌入樣式,寫法如下:
<table width="60%" border="1"> <tr> <td style="color:#FF0000">显示红色</td> <td style="color:#0000FF">显示蓝色</td> <td style="color:#00FF00">显示绿色</td> </tr> </table>
推薦學習:《HTML影片教學》
以上是html怎麼給表格裡字體改顏色的詳細內容。更多資訊請關注PHP中文網其他相關文章!