css 中文件路径的语法

css 中文件路径的语法

我想在 css 文件中输入以下命令。

background: #2c001e url(file:///home/user/.local/share/backgrounds/mypic.jpg)

但是,我不想明确声明用户路径/home/user/,而是使用~$HOME代替它。我发现它们不起作用,即

background: #2c001e url(file://~/.local/share/backgrounds/mypic.jpg)
background: #2c001e url(file://$HOME.local/share/backgrounds/mypic.jpg)

我应该使用正确的语法是什么?

描述了使用上述命令的上下文这里

相关内容