“footer lengket” Kode Jawaban

Sticky Footer Bootstrap 3

<style>
.footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: red;
   color: white;
   text-align: center;
}
</style>
Stratocaster

Posisikan footer untuk tetap di bawah layar flexbox

/* Use flex and set auto margin */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  margin-top: auto;
}
Talented Thrush

footer lengket

html, body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
}
.content {
  flex: 1 0 auto;
}
.footer {
  flex-shrink: 0;
}
Solstice

Jawaban yang mirip dengan “footer lengket”

Pertanyaan yang mirip dengan “footer lengket”

Lebih banyak jawaban terkait untuk “footer lengket” di CSS

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya