svg 文件在上传到我正在使用的服务器后没有显示在我的背景中时出现问题。确保文件权限允许它在服务器上可读,当我在计算机上打开我的 html 文件时,您可以看到它,但如果您转到 url,它不会显示。我们正在使用的唯一浏览器是 chrome。有任何想法吗?看起来很奇怪,因为我在上传之前没有更改任何内容。这是我的CSS:
.paradox{
background-image:url('paradox.svg');
background-repeat:no-repeat;
background-size: cover;
}
和我使用 CSS 的 html:
<html>
<head>
<title>Homework 5</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body class="paradox">
<p class="spacing">
<iframe class="resize" src="form.html" frameborder="0" >
</p>
</body>
</html>