jquery - is it possible to keep button with fixed position after zoom in or zoom out on mobile -
i working on website having fixed position button works fine on desktop can possible 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>
you can set this:
<div class="row"> <div class="col-lg-4 col-lg-push-6 text-center"> <div class="exit"> <a href="/" class="btn btn-blue">exit</a> </div> </div> </div>
this make sure div holding button stay while change screen size.
Comments
Post a Comment