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