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

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -