Empty space at the end of page

user2178841

How do I manually leave empty space at the bottom of a html page?

My contents are in div and are positioned:absolutely mostly.

I tried couple of <br>s right before </body>. Did not work. I tried margin-bottom:2cm; on the div. Did not work.

Mr. Alien

absolute positioned div's are out of the document flow, so whatever you do, won't affect the other elements on the page and hence, margin-bottom fails as well, so what you can do is use a wrapping div with a height of 100%; and than use margin-bottom: 2cm; and it will work

html, body {
    height: 100%;
    background: #f50;
}

div { /* Using element selector, you can use ids or classes instead to be specfic*/
    height: 100%;
    margin-bottom: 2cm;
}

Demo

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Java

useDelimiter() printing empty space

From Dev

Remove Extra Space At End

From Dev

Pygame: Find empty space?

From Dev

Removing empty footnote space

From Dev

Splitting with empty space in Ruby

From Dev

Regular expression for no white space at start or end, but allow white space in middle, empty and any 6-20 characters?

From Dev

FrameLayout : Fill empty space

From Dev

Reduce Empty Space in JFrame

From Dev

Bootstrap grid empty space

From Dev

Prevent empty element from occupying space at bottom of page

From Dev

Add space to the end of the RecyclerView

From Dev

SAS handling empty space

From Dev

Get parent empty space

From Dev

Regex an Empty Space in Swift

From Dev

Replace %20 with an empty space

From Dev

Fill empty space in string

From Dev

Kendo UI Drawing API export PDF splits html table too soon, generating an useless empty space on the page

From Dev

Add empty (blank) space under (in the end of) UITableView

From Dev

Empty space on the bottom of the page when swipe up on safari ios

From Dev

Regular Expression Match Doesn't Start With, Contain, Or End With Space And Not Empty String

From Dev

Bootstrap span empty space

From Dev

How to fill page horizontally with divs without empty space at the end

From Dev

Unwanted blank space generated at the end of page

From Dev

Unallocated space at the end of HDDs

From Dev

CSS some space at the end of the page, reason floats?

From Dev

Why is there empty space at the top & bottom of my page when the UWP app runs? XAML nor Design view shows empty space

From Dev

CSS recipe to fill the empty space on the body of printable page with Horizontal Lines

From Dev

unwanted empty spaces apear at the end of page

From Dev

How to erase the empty space at the end of a WordSpace page

Related Related

  1. 1

    useDelimiter() printing empty space

  2. 2

    Remove Extra Space At End

  3. 3

    Pygame: Find empty space?

  4. 4

    Removing empty footnote space

  5. 5

    Splitting with empty space in Ruby

  6. 6

    Regular expression for no white space at start or end, but allow white space in middle, empty and any 6-20 characters?

  7. 7

    FrameLayout : Fill empty space

  8. 8

    Reduce Empty Space in JFrame

  9. 9

    Bootstrap grid empty space

  10. 10

    Prevent empty element from occupying space at bottom of page

  11. 11

    Add space to the end of the RecyclerView

  12. 12

    SAS handling empty space

  13. 13

    Get parent empty space

  14. 14

    Regex an Empty Space in Swift

  15. 15

    Replace %20 with an empty space

  16. 16

    Fill empty space in string

  17. 17

    Kendo UI Drawing API export PDF splits html table too soon, generating an useless empty space on the page

  18. 18

    Add empty (blank) space under (in the end of) UITableView

  19. 19

    Empty space on the bottom of the page when swipe up on safari ios

  20. 20

    Regular Expression Match Doesn't Start With, Contain, Or End With Space And Not Empty String

  21. 21

    Bootstrap span empty space

  22. 22

    How to fill page horizontally with divs without empty space at the end

  23. 23

    Unwanted blank space generated at the end of page

  24. 24

    Unallocated space at the end of HDDs

  25. 25

    CSS some space at the end of the page, reason floats?

  26. 26

    Why is there empty space at the top & bottom of my page when the UWP app runs? XAML nor Design view shows empty space

  27. 27

    CSS recipe to fill the empty space on the body of printable page with Horizontal Lines

  28. 28

    unwanted empty spaces apear at the end of page

  29. 29

    How to erase the empty space at the end of a WordSpace page

HotTag

Archive