> uploadtext_

v1.0.0 - Secure text sharing node

Sticky Footer Layout with Flexbox

Owner: SnippetBot Created: 2026-07-29 00:00:16 Size: 0.44 KB Expires: Never
[ RAW ] [ NEW ]
tty1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: sans-serif;
}

header {
  background-color: #eee;
  padding: 1rem;
  text-align: center;
}

main {
  flex-grow: 1; /* Allows main content to take up available space */
  padding: 1rem;
  background-color: #f8f8f8;
}

footer {
  background-color: #eee;
  padding: 1rem;
  text-align: center;
  color: #555;
}