阅读:1513回复:4
求助,请求帮忙修复下72空白页壁纸CSS样式@-moz-document url(about:newtab) { body { background-image: url() !important; background-size:cover !important; background-attachment: fixed !important; } .newtab-thumbnail { height: 200px !important; } }请求大神帮忙修复下,感激不尽 |
|
1楼#
发布于:2020-01-14 22:43
|
|
2楼#
发布于:2020-01-14 21:54
可以,但不建议,远程连接一样要下载缓存在硬盘中,而且有暴露隐私的风险。
userContent.css 中也可以用 file 协议访问本地的图片文件,不一定要放在同一目录, 具体方法将本地硬盘中的图片拖进浏览器打开,地址栏的显示的就是 file 协议的路径地址。 |
|
3楼#
发布于:2020-01-14 20:51
|
|
4楼#
发布于:2020-01-14 15:20
将壁纸文件如:wallpaper.jpg 放在 userContent.css 同一目录下,userContent.css 里加上就可以了。
@-moz-document url(about:newtab) { body { background-image: url(./wallpaper.jpg) !important; background-size:cover !important; background-attachment: fixed !important; } } |
|