gpt4 book ai didi

django - Tailwindcss : fixed/sticky footer on the bottom

转载 作者:行者123 更新时间:2023-12-01 15:01:49 31 4
gpt4 key购买 nike

我使用 tailwindCSS 并遇到制作页脚的问题。

base.html

  <body>
{% include "partials/nav.html" %}

{% block content %}
{% endblock %}

{% include "partials/footer.html" %}
</body>

footer.html
<footer class="w-full h-64 bg-gray-900 static bottom-0">
{% load static %}
<img src="{% static "images/logo_white.png" %}" width="70px"> <p class="text-white"> &copy~~~~~~</p>
</footer>

我尝试了静态、绝对、固定、相对...但是 .fixed 覆盖了内容块,并且相对使页脚向上。或 .mb-0、.bottom-0 不起作用。

是否可以将页脚固定在底部?

最佳答案

<div class="flex flex-col h-screen justify-between">
<header class="h-10 bg-red-500">Header</header>
<main class="mb-auto h-10 bg-green-500">Content</main>
<footer class="h-10 bg-blue-500">Footer</footer>
</div>

类(class) justify-between不是必需的,但我会离开他(对于其他情况)。

所以,玩 h-screenmb-auto类。

你会得到这个用户界面:

enter image description here

关于django - Tailwindcss : fixed/sticky footer on the bottom,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59812003/

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