出于某种原因,我的Blogger页面不允许我在页脚和页面底部之间创建透明空间。我希望页脚向上移动(尝试边距和填充,但没有任何东西),以便看到大约10px的背景,但需要帮助使用什么代码!请帮忙,谢谢!
答案 0 :(得分:0)
在你的css表中添加:
body { margin-bottom: 10px; }
答案 1 :(得分:0)
我检查了您的网页并将其添加到.content-inner
.content-inner {
margin-bottom:10px;
}
似乎工作正常。
答案 2 :(得分:0)
只需将此添加到您的CSS中即可。
.content-cap-bottom.cap-bottom {
height: 10px;
}
这将确保此div保持“打开”状态,以便您可以看到它下面的背景。