CSS 中 background-image 属性的用法


 background-image 属性用于设置元素的背景图像。

示例

您可以尝试运行以下代码来学习如何使用 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>

更新于: 2020 年 1 月 30 日

110 次浏览

开启你的 职业生涯

完成课程,获得认证

开始学习
广告