I am working on website having fixed position button it works fine on desktop but can it possible to keep button on fixed position after zoom in or zoom out on mobile device. or can reposition button on zoom in or zoom 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>