作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在学习 Django 并构建第一个测试投票应用程序,但遇到了背景图像问题。绿色文本有效,但添加背景图像没有任何作用(背景只是白色)。知道为什么这不能正常工作吗?
背景图片C:\Users\xxx\Python\Django\mysite\polls\static\polls\images\sample123.jpg
CSS样式:C:\Users\xxx\Python\Django\mysite\polls\static\polls\style.css
li a {
color: blue;
}
body {
background: url('C:\Users\xxx\Python\Django\mysite\polls\static\polls\images\sample123.jpg');
background-repeat: no-repeat;
}
索引 HTML:C:\Users\xxxx\Python\Django\mysite\polls\templates\polls
{% load static %}
<link rel="stylesheet" type="text/css" href="{% static 'polls/style.css' %}">
{% if latest_question_list %}
<ul>
{% for question in latest_question_list %}
<li><a href="{% url 'polls:detail' question.id %}">{{ question.question_text }}</a></li>
{% endfor %}
</ul>
{% else %}
<p>No polls are available.</p>
{% endif %}
最佳答案
这应该可以解决问题
body {
background: url('/static/images/sample123.jpg');
background-repeat: no-repeat;
}
关于python - Django 投票应用程序 : Background Image Not Loading,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65402732/
我是一名优秀的程序员,十分优秀!