在CSS中使用background-color属性

背景颜色属性被用于设置一个元素的背景颜色。

示例

您可以尝试运行以下代码,以了解如何使用background-color属性:

<html>
   <head>
   </head>
   <body>
      <p style = "background-color:blue;">
      This text has a blue background color.</p>
   </body>
<html>