我希望实现this example但不同之处在于,如果我的网页上有太多内容(在导航栏和页脚之间),则此内容缩小 /挤压以适应内部(即,使得页脚在所有屏幕分辨率下仍然可见,使其成为CSS术语中的“固定页脚”)。我正在使用bootstrap 3.1.1,如果有人有一个可以自助运行的解决方案,那将会很酷:)。最好!
答案 0 :(得分:1)
您可以随时使用固定的页脚,并在其下方滚动任何其他内容。 以jsfiddle为例:
html {
min-height: 100%;
position: relative;
}
body {
margin-bottom: 1.5rem /* or whatever your fixed footer height is */
}
/* and assuming your footer has id="footer" */
#footer {
position: fixed;
bottom: 0;
height: 1.5rem;
overflow: hidden;
}
答案 1 :(得分:0)