HTML - 背景颜色



bgcolor 属性用于控制 HTML 元素的背景,特别是页面主体和表格背景。以下是使用 bgcolor 属性与任何 HTML 标签的语法。

<tagname bgcolor="color_value"...>

此 color_value 可以采用任何形式。

<!-- Give color name -->
<table bgcolor="lime" >
 
<!-- Give hex value -->
<table bgcolor="#f1f1f1" >
 
<!-- Give color value in RGB terms -->
<table bgcolor="rgb(0,0,120)" >
 

示例

以下是设置 HTML 标签背景的示例。

<!-- Give color name -->
<table bgcolor="yellow" width="100%" >
   <tr><td>
      This background is yellow
   </td></tr>
</table>
 
<!-- Give hex value -->
<table bgcolor="#6666FF" width="100%" >
   <tr><td>
      This background is sky blue
   </td></tr>
</table>
 
<!-- Give color value in RGB terms -->
<table bgcolor="rgb(0,0,255)"  width="100%" >
   <tr><td>
      This background is blue
   </td></tr>
</table>

这将产生以下结果

此背景为黄色
此背景为天蓝色
此背景为蓝色
html_backgrounds.htm
广告