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>
广告