我的模板基于this。为了保持页脚“粘性”,使用以下CSS规则:
/* Sticky footer styles
-------------------------------------------------- */
html {
position: relative;
min-height: 100%;
}
body {
/* Margin bottom by footer height */
margin-bottom: 60px;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
/* Set the fixed height of the footer here */
height: 60px;
background-color: #f5f5f5;
}
/* Custom page CSS -------------------------------------------------- */
/* Not required for template or sticky footer method. */
body > .container {
padding: 60px 15px 0;
}
.container .text-muted {
margin: 20px 0;
}
.footer > .container {
padding-right: 15px;
padding-left: 15px;
}
code {
font-size: 80%;
}
但是,当我包含一个表时,页脚与页脚重叠。我认为这是由于DOM规则的运作方式。
使用z-index
进行修复:
.footer {
z-index: 4;
}
这是最好的方法吗?
如果您查看here +,请将显示条目更改为100'你会明白我的意思。
答案 0 :(得分:0)
在z-index
上使用footer
是解决方案。
.footer {
z-index: 2;
}