主页
CSS
自适应图像
试用:根据设备宽度更改背景图片
运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> /* For device width smaller than 400px: */ body { background-repeat: no-repeat; background-image: url('img_smallflower.jpg'); } /* For device width 400px and larger: */ @media only screen and (min-device-width: 400px) { body { background-image: url('img_flowers.jpg'); } } </style> </head> <body> </body> </html>