Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要使用 CSS 上传图片。图像存储在桌面上的文件夹(X)中。我需要直接从桌面上传这张图片
.fsBody .fsForm { background-image: url('C:\Users\Accountant\Desktop\X\test.jpg'); }
图片似乎没有直接上传到我的表单。图片为JPEG格式。
如果您要使用的图像将被设置为背景图像,请将其直接放在您正在创建项目的文件夹中。只需将其拖入其中即可。
.fsBody .fsForm { background-image: url('folderlocation'); }
您引用该位置的方式的问题是,当您上传项目文件夹时,图像将不在该文件夹中,因为它将位于单独的位置。因此它没有办法找到它。