0

I have a web page built with materialize css library.

This is the screenshot: enter image description here As you can see, the footer doesn't go at bottom, but remains attached to the last item (step 5).

I didn't modify any file from materialize library.

How can fix?

dam034
  • 261
  • 1
  • 3
  • 13

1 Answers1

0

Use this for the footer:

footer {
  position: absolute;
  bottom: 0;
}
Jaden
  • 5
  • 2
benadzs
  • 127
  • 2
  • 13