CSS中背景图片属性的使用

 背景图像属性用于设置一个元素的背景图像。

示例

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

<html>
   <head>
      <style>
         body {
            background-image: url("/latest/inter-process-communication.png");
            background-color: #cccccc;
         }
      </style>
      <body>
         <h1>Hello World!</h1>
      </body>
   </head>
<html>