简体   繁体   中英

How do I remove the small blank/uncovered space at the bottom of my blogger blog?

I have a blogger blog, and I need to know how to have the footer entirely cover the bottom of the page. When you scroll to the bottom, there is a small gap between the content container which is obviously black, and the bottom of the browser window. How do I fix this? How do I make the content container stretch to the bottom of the page entirely?

http://blog.substructures.us/

You can use

.content{
   heigth : 100%;
   padding : 5px;
   margin : 5px;
}

Changing CSS for .content-inner to this will work although there might be a better solution available, so keep looking at answers in this thread.

.content-inner {
    margin-top: -20px !important;
    min-height: 100vh;
}

I experimented with the answer Dr. Geek gave me, and had a problem with a horizontal scrollbar appearing at the bottom and throwing the pages setup off from the main setup, so I added this to the custom CSS for now:

.content{
margin-bottom: -1px;
}

It's a very simple fix, and anyone who uses blogger and wants to remove a gap from the bottom of their blog will have this answer hopefully.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM