主页
HTML
HTML 图像
背景图像
试一试:HTML 背景图片 - 不重复
运行 ❯
建立您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> body { background-image: url('example_img_girl.jpg'); background-repeat: no-repeat; } </style> </head> <body> <h2>Background No Repeat</h2> <p>You can avoid the image from being repeated by setting the background-repeat property to "no-repeat".</p> </body> </html>