请帮助我使此页脚出现在页面底部,而无需“外部”CSS
CSS
#exefixedfooterdiv {
background-color: yellow;
overflow:none;
width:100%;
height:80px;
position:fixed;
bottom:0%;
left:0%;}
HTML
<div id="exefixedfooterdiv" >
</div>
编写内联样式。
<div style="position:absolute;width:100%;height:100px;background:#FF0000;bottom:0;" >
</div>
或根据您的风格:
<div id="exefixedfooterdiv" style="background-color: yellow;
; overflow:none; width:100%; height:80px; position:fixed; bottom:0%; left:0%;"></div>
演示在这里
您可以描述 div 内的样式:
<div style="background-color: yellow; overflow:none; width:100%; height:80px; position:fixed; bottom:0%; left:0%;" >
您可以编写如下代码中提到的内联 CSS:-
<div style="background-color: red;
; overflow:none; width:100%; height:80px; position:fixed; bottom:0%; left:0%;" >
</div>
您必须为 position:fixed 元素添加 z-index :
#exefixedfooterdiv {
background-color: yellow;
overflow:none;
width:100%;
height:80px;
position:fixed;
bottom:0;
left:0;
z-index: 999;
}
像这样
CSS
*{
margin:0;
padding:0;
}
#exefixedfooterdiv {background-color: yellow;
overflow:none; width:100%; height:80px; position:fixed; bottom:0;
}
HTML
<div id="exefixedfooterdiv" >
</div>