我正在尝试创建我的第一个网页。我正在尝试获取图像作为背景,但是在使用localhost进行测试时,虽然所有其他CSS格式都没有显示,但是它没有出现。我经历了另一个与类似问题有关的stackoverflow问题(似乎很常见),但是没有任何效果。
我还尝试了将.jpg文件与.css文件放在同一文件夹中(这是当前的安排。
下面是我目前拥有的代码...
index.html
{% load static %}
<title>lvl6</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="{% static 'pages/style.css' %}">
<header class="header">
<div class="header-text">Sign in via:</div>
<a href="#" class="header-link">LinkedIn</a>
<a href="#" class="header-link">Facebook</a>
</header>
<section class="landing-section landing-main">
<h1 class="brand">lvl6</h1>
<p class="landing-main-text">
"Creating a future environment within which the human soul is destined to Flourish"
<br>
<br>
subtext....
</p>
</section>
style.css
.landing-section {
min-height: 100vh;
width: 100vw;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.landing-main {
background: url("stock.jpg") no-repeat center center fixed;
background-size: cover;
}
.header {
width: 100vw;
display: flex;
justify-content: flex-end;
top: 0;
left: 0;
position: absolute;
background: rgba(0,0,0,0.5);
}
.header-link {
margin: 1rem;
border-bottom: 3px solid #c55e00;
font-size: 1.2rem;
color: #222;
text-decoration: none;
color: #ccc;
}
.header-text {
margin: 1rem;
font-size: 1.2rem;
color: #ccc;
}
“ stock.jpg”与“ style.css”位于同一文件夹中。我试图为图像创建一个目录并将其放置在该目录中,但也无法从该页面上取它。
我通过chrome浏览了开发人员工具,这是路径和文件夹中显示的内容...
任何人和所有帮助将不胜感激。