I
I
Igor2020-01-20 01:29:16
Vue.js
Igor, 2020-01-20 01:29:16

Vuetify, how to push a pagination block to the bottom?

Vuetify, how to push a pagination block to the bottom?
code pen

Answer the question

In order to leave comments, you need to log in

1 answer(s)
E
Eugene Chefranov, 2020-01-20
@Chefranov

Yes, as usual, like this:

/* CSS */
html { height: 100%; }
body {
  min-height:100%; 
  position:relative; 
  padding-bottom: 70px; 
}
.footer { 
  position: absolute; 
  left: 0;
  right: 0;
  bottom: 0; 
  height: 50px; 
}

<body>
  ...

  <footer class="footer">

  </footer>
</body>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question