Skip to content

Latest commit

 

History

History
48 lines (31 loc) · 867 Bytes

bootstrap.md

File metadata and controls

48 lines (31 loc) · 867 Bytes

bootstrap sticky footer

%html
  %body
     Some  body stuff
    
    %footer
      footer content
$footer-height: 110px

html
  position: relative
  min-height: 100%

body
  margin-bottom: $footer-height

body > footer
  position: absolute
  bottom: 0
  width: 100%
  height: $footer-height

bootstrap center

bootstrap 3 actually provide several classes to centralize

<div class="center-block">...</div>

  • .text-center centers with text-align

<div class="text-center">...</div>

example: http://jsfiddle.net/mynameiswilson/eYNMu/

keywords: how to center bootstrap pagination