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 Dev

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

From Dev

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

From Dev

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

From Dev

Unwanted blank space generated at the end of page

From Dev

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

From Dev

unwanted empty spaces apear at the end of page

From Dev

Prevent empty element from occupying space at bottom of page

From Dev

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

From Dev

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

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

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

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

From Dev

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

From Dev

Remove Extra Space At End

From Dev

Add space to the end of the RecyclerView

From Dev

Unallocated space at the end of HDDs

From Java

useDelimiter() printing empty space

From Dev

Removing empty footnote space

From Dev

Get parent empty space

From Dev

Splitting with empty space in Ruby

From Dev

Regex an Empty Space in Swift

From Dev

Pygame: Find empty space?

From Dev

FrameLayout : Fill empty space

From Dev

Reduce Empty Space in JFrame

From Dev

Bootstrap grid empty space

From Dev

Replace %20 with an empty space

From Dev

SAS handling empty space

From Dev

Fill empty space in string

From Dev

Bootstrap span empty space

Related Related

  1. 1

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

  2. 2

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

  3. 3

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

  4. 4

    Unwanted blank space generated at the end of page

  5. 5

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

  6. 6

    unwanted empty spaces apear at the end of page

  7. 7

    Prevent empty element from occupying space at bottom of page

  8. 8

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

  9. 9

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

  10. 10

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

  11. 11

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

  12. 12

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

  13. 13

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

  14. 14

    Remove Extra Space At End

  15. 15

    Add space to the end of the RecyclerView

  16. 16

    Unallocated space at the end of HDDs

  17. 17

    useDelimiter() printing empty space

  18. 18

    Removing empty footnote space

  19. 19

    Get parent empty space

  20. 20

    Splitting with empty space in Ruby

  21. 21

    Regex an Empty Space in Swift

  22. 22

    Pygame: Find empty space?

  23. 23

    FrameLayout : Fill empty space

  24. 24

    Reduce Empty Space in JFrame

  25. 25

    Bootstrap grid empty space

  26. 26

    Replace %20 with an empty space

  27. 27

    SAS handling empty space

  28. 28

    Fill empty space in string

  29. 29

    Bootstrap span empty space

HotTag

Archive