Currently, I am utilizing Django as my web framework and Bootstrap to enhance the rendering of the frontend. My goal is to implement an "add" button on my page that will always be in the bottom left corner regardless of scrolling, overlaying any other content from the user's perspective.
To achieve this, I prefer using Bootstrap's existing features and avoiding custom CSS altogether. However, I am struggling with understanding how to utilize Bootstrap's positioning utilities as outlined here.
While adding the button displays it, I am unsure of how to configure its position effectively. Using
class="position-absolute"
does not yield the desired results.
<div class="position-absolute">
<a href="{% url 'app:add' %}"><i class="fas fa-plus-circle fa-3x"></i></a>
</div>