當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML <th> bgcolor屬性用法及代碼示例


HTML <th> bgcolor屬性用於指定表標題單元格的背景顏色。 HTML 5不支持它。

用法:

<th bgcolor="color_name | hex_number | rgb_number">

屬性值:


  • color_name:它使用顏色名稱設置背景顏色。例如“red”。
  • hex_number:它使用十六進製顏色代碼設置背景顏色。例如“#0000ff”。
  • rgb_number:它使用rgb代碼設置背景色。例如:“ RGB(0,153,0)”。

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      HTML th bgcolor Attribute 
  </title> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
  
    <h2>HTML th bgcolor Attribute</h2> 
  
    <table width="500" border="1"> 
        <tr> 
            <th bgcolor="green">Name</th> 
            <th bgcolor="yellow">Expenses</th> 
        </tr> 
  
        <tr> 
            <td>BITTU</td> 
            <td>2500.00</td> 
        </tr> 
  
        <tr> 
            <td>RAKESH</td> 
            <td>1400.00</td> 
        </tr> 
    </table> 
</body> 
  
</html>

輸出:

支持的瀏覽器:下麵列出了HTML <th> bgcolor屬性支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Safari
  • Opera


相關用法


注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 HTML | <th> bgcolor Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。