首页htmlbackground_colorCSS Property Value - 如何background-color: #cccccc;

CSS Property Value - 如何background-color: #cccccc;

我们想知道如何background-color: #cccccc;

<html>

<head>

<style>
body {
  background-color: #cccccc;
  color: #000000
}

b {
  background-color: #FF0000;
  color: #FFFFFF;
}

p {
  background-color: rgb(255, 255, 255);
}
</style>
</head>

<body>
  <p>
    This example illustrates the <b>background-color</b> property.
  </p>
</body>
</html>