首页
HTML
HTML 图片
背景图片
Tryit: HTML 背景图片 - 默认重复
运行 ❯
获取你
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> body { background-image: url('example_img_girl.jpg'); } </style> </head> <body> <h2>Background Repeat</h2> <p>By default, the background image will repeat itself if it is smaller than the element where it is specified, in this case the body element.</p> </body> </html>