gpt4 book ai didi

html - 为什么我循环中的第一篇文章意外缩进

转载 作者:行者123 更新时间:2023-12-04 17:16:34 25 4
gpt4 key购买 nike

当我使用循环显示我的帖子时。我循环中的第一篇文章确实意外地缩进了。下面我将提供缩进的代码和图像。

代码:

{% extends 'base.html' %}


{% block content %}


<br/>
<div class="container">
<h1>Posts</h1>

<ul>
<br/>
{% for post in object_list %}
{% if forloop.counter <= 15 %}


<li><a href="{% url 'article-detail' post.pk %}"> {{post.title}}</a>
- {{ post.author.first_name }} {{ post.author.last_name }} <br/> {{post.body}}</li>
<br/>
<style>
a {
text-transform: capitalize;
}
</style>
</ul>

{% endif %}
{% endfor %}

<a href="{% url 'home' %}" class="btn btn-secondary">Back</a>

{% endblock %}

最佳答案

我注意到你的 <ul>标签放在循环之外。但是你的</ul>被放入循环内。

你应该移动你的 </ul>循环外

Example

关于html - 为什么我循环中的第一篇文章意外缩进,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68593411/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com