首页
HTML
HTML 图片
背景图片
Tryit:HTML 背景图片拉伸以适应
运行 ❯
获取您的
自己
网站
×
更改方向
保存代码
更改主题,暗/亮
转到 Spaces
<!DOCTYPE html> <html> <head> <style> body { background-image: url('img_girl.jpg'); background-repeat: no-repeat; background-attachment: fixed; background-size: 100% 100%; } </style> </head> <body> <h2>Background Stretch</h2> <p>Set the background-size property to "100% 100%" and the background image will be stretched to cover the entire element, in this case the body element.</p> </body> </html>