如何在HTML中显示元素的背景颜色?

WBOY
发布: 2023-08-27 19:57:19
转载
746 人浏览过

如何在HTML中显示元素的背景颜色?

使用 HTML 中的bgcolor属性来显示元素的背景颜色。它用于控制 HTML 元素的背景,特别是页面正文和表格背景。

注意 - HTML5 不支持此属性。

示例

您可以尝试运行以下代码来了解如何在 HTML 中实现 bgcolor 属性 -

<!DOCTYPE html>
<html>
   <head>
      <title>HTML Background Colors</title>
   </head>
   <body>
      <!-- Format 1 - Use color name -->
      <table bgcolor = "yellow" width = "100%">
         <tr>
            <td>
               This background is yellow
            </td>
         </tr>
      </table>

      <!-- Format 2 - Use hex value -->
      <table bgcolor = "#6666FF" width = "100%">
         <tr>
            <td>
               This background is sky blue
            </td>
         </tr>
      </table>

      <!-- Format 3 - Use color value in RGB terms -->
      <table bgcolor = "rgb(255,0,255)" width = "100%">
         <tr>
            <td>
               This background is green
            </td>
         </tr>
      </table>
   </body>
</html>
登录后复制

以上是如何在HTML中显示元素的背景颜色?的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:tutorialspoint.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板