Jak utworzyć: stała stopka strony

Naucz się, jak używać CSS do tworzenia stałej lub przylegającej stopki strony.

Spróbuj sam

Jak utworzyć stały stopkę strony

<style>
.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: red;
  color: white;
  text-align: center;
}
</style>
<div class="footer">
  <p>Footer</p>
</div>

Spróbuj sam

Strony związane

Tutorial:CSS pozycjonowanie