I have been working on a website with a fixed position button that works well on desktop. However, I am wondering if it is possible to keep the button in a fixed position even after zooming in or out on a mobile device. Alternatively, can the button be repositioned when zooming in or out?
CSS:
.exit {
text-align:center;
}
.exit.btn{
position: fixed;
bottom: 40px;
}
HTML:
<div class="exit">
<a href="/" class="btn btn-blue">Exit</a>
</div>