How to stick div to bottom page no scrolling

haya

I have the following html struct:

<body>
<div class="content">
   ...here long content
</div>
<div class="footer">
    ...here some rows for footer
</div>
</body>

i want to strick the footer part to bottom page and the content page need to be in all the other place in page with scroll only in his part. !important! not scrolling in all page - only in content part.

something like this:

enter image description here

Is it possible?

Thanks!

Temani Afif

Simply do this :

* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
}

.content {
  height: calc(100vh - 50px);
  overflow: auto;
  background: red;
  padding: 50px;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: blue;
  color: #fff;
  z-index: 99;
}
<div class="content">
  lorem ipsum lorem ipsumlorem ipsum lorem ipsumlorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsumlorem ipsum lorem ipsumlorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem
  ipsumlorem ipsum lorem ipsumlorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsumlorem ipsum lorem ipsumlorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsumlorem ipsum
  lorem ipsumlorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsumlorem ipsum lorem ipsumlorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem
  ipsum lorem ipsumlorem ipsum lorem ipsumlorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsumlorem ipsum lorem ipsumlorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsumlorem
  ipsum lorem ipsumlorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsumlorem ipsum lorem ipsumlorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum
  ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsumlorem ipsum lorem ipsumlorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsumlorem ipsum lorem ipsumlorem ipsum lorem ipsum lorem ipsum lorem ipsum
  lorem ipsum lorem ipsum lorem ipsum lorem ipsumlorem ipsum lorem ipsumlorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsumlorem ipsum lorem ipsumlorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem
  ipsum lorem ipsum lorem ipsumlorem ipsum lorem ipsumlorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsumlorem ipsum lorem ipsumlorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum
  lorem ipsumlorem ipsum lorem ipsumlorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum
</div>
<div class="footer">
  ...here some rows for footer
</div>

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to make a div stick to top or bottom, depending on how the user is scrolling?

From Dev

How to stick the bottom part of a div to top of the screen when scrolling down?

From Dev

Jquery - stick div to bottom of the page

From Dev

Word - How to stick text to the bottom of page

From Dev

How to stick div on top of the page

From Dev

Make div stick to top of page after scrolling past another div?

From Dev

Jump div to bottom with out scrolling the page

From Dev

How to make a responsive div stick to page edge

From Dev

Bootstrap Web Template: How to stick the footer element to the bottom of the page?

From Dev

How to fadeIn a div at the bottom of the window when scrolling?

From Dev

How to fadeIn a div at the bottom of the window when scrolling?

From Dev

Making the footer stick at the bottom of the page

From Dev

How to stick an image to the bottom of the visible part of a scrollable div

From Dev

Make a div stick to bottom of parent

From Dev

Stick a div to left of page

From Dev

How to place this div to the bottom of the page

From Dev

How to place this div to the bottom of the page

From Dev

Trying to get div to stick at the top while scrolling a page. It is staying at the top but the CSS is getting deformed

From Dev

How to make the footer stick to the bottom?

From Dev

Show div at top of page, hide when scrolling, then show div at bottom of page

From Dev

Make a div stick to the left when scrolling

From Dev

How to prevent white space "bounce" after scrolling to the top of the page and the bottom

From Dev

Make div stick to bottom of another div (not bottom of viewport)

From Dev

HTML & CSS - Text stick to bottom of div?

From Dev

lightbox scrolling past page bottom

From Dev

Page not scrolling all the way to the bottom

From Dev

lightbox scrolling past page bottom

From Dev

how to make a floating div that will float at the bottom of page

From Dev

HTML -- How can I make my navbar stick after scrolling to a certain point on page?

Related Related

  1. 1

    How to make a div stick to top or bottom, depending on how the user is scrolling?

  2. 2

    How to stick the bottom part of a div to top of the screen when scrolling down?

  3. 3

    Jquery - stick div to bottom of the page

  4. 4

    Word - How to stick text to the bottom of page

  5. 5

    How to stick div on top of the page

  6. 6

    Make div stick to top of page after scrolling past another div?

  7. 7

    Jump div to bottom with out scrolling the page

  8. 8

    How to make a responsive div stick to page edge

  9. 9

    Bootstrap Web Template: How to stick the footer element to the bottom of the page?

  10. 10

    How to fadeIn a div at the bottom of the window when scrolling?

  11. 11

    How to fadeIn a div at the bottom of the window when scrolling?

  12. 12

    Making the footer stick at the bottom of the page

  13. 13

    How to stick an image to the bottom of the visible part of a scrollable div

  14. 14

    Make a div stick to bottom of parent

  15. 15

    Stick a div to left of page

  16. 16

    How to place this div to the bottom of the page

  17. 17

    How to place this div to the bottom of the page

  18. 18

    Trying to get div to stick at the top while scrolling a page. It is staying at the top but the CSS is getting deformed

  19. 19

    How to make the footer stick to the bottom?

  20. 20

    Show div at top of page, hide when scrolling, then show div at bottom of page

  21. 21

    Make a div stick to the left when scrolling

  22. 22

    How to prevent white space "bounce" after scrolling to the top of the page and the bottom

  23. 23

    Make div stick to bottom of another div (not bottom of viewport)

  24. 24

    HTML & CSS - Text stick to bottom of div?

  25. 25

    lightbox scrolling past page bottom

  26. 26

    Page not scrolling all the way to the bottom

  27. 27

    lightbox scrolling past page bottom

  28. 28

    how to make a floating div that will float at the bottom of page

  29. 29

    HTML -- How can I make my navbar stick after scrolling to a certain point on page?

HotTag

Archive