如何让页脚固定在页面底部
在我的 html 中,我有一个名为“页脚”的 div。我希望它有一个 #000 的背景并占据整个页面宽度,并且后面不留空白。
我目前正在使用这个CSS:
.footer {
color: #fff;
clear: both;
margin: 0em 0em 0em 0em;
padding: 0.75em 0.75em;
background: #000;
position: relative;
top: 490px;
border-top: 1px solid #000;
}
但是整个页面宽度没有用这个CSS代码填充。
有什么帮助吗?谢谢!
In my html I have a div classed "footer". I want it to have a bg to #000 and occupy the full page width and left no white space after it.
I am currently using this CSS:
.footer {
color: #fff;
clear: both;
margin: 0em 0em 0em 0em;
padding: 0.75em 0.75em;
background: #000;
position: relative;
top: 490px;
border-top: 1px solid #000;
}
But the full page width isn't filled with this css code.
Any help? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(9)
我使用粘性页脚: http://ryanfait.com/sticky-footer/
本质上,包装器的高度为 100%,页脚的高度为负边距,确保页脚始终位于底部,而不会导致滚动。
这应该可以实现您的目标,即拥有 100% 宽度的页脚和较窄的正文,因为 div 是块级元素,并且默认情况下它们的宽度是其父级的 100%。请记住,此处的页脚不包含在包装 div 中。
I use sticky footer: http://ryanfait.com/sticky-footer/
Essentially, the wrapper is 100% height, with a negative margin the height of the footer ensuring the footer is always at the bottom without causing scroll.
This should accomplish your goal of having a 100% width footer and narrower body as well, because divs are block level elements, and their width is by default 100% of their parent. Keep in mind the footer here is not contained by the wrapper div.
您可以将页脚 div 设为页面绝对值,如下所示:
you could make the footer div absolute to the page like this:
我为网页的每个部分使用了一些
DIV
元素。每个部分都有相对定位。使用包装
DIV
,我可以将包装器设置为特定宽度,并且其中的元素可以是100%
宽度。我建议您避免使用绝对定位和浮动,因为它们会产生兼容性问题,因此可能无法在所有浏览器上正确显示。
I use a few
DIV
elements for each section of my webpages.Each section is relatively positioned. Using wrapping
DIV
s, I can set the wrapper a specific width and the elements inside it can be100%
width.I suggest you steer away from absolute positioning and floating, because they create compatibility issues so may not appear correctly on all browsers.
如果您希望页脚固定在页面上:
但如果您希望页脚固定在页面末尾:
看到
if you want that your footer be fixed on your page :
but if you want your footer fixed end of page :
see that
我很高兴你们提供的支持,每一个回复都对我有所帮助。我来到这段代码:
谢谢!
I'm glad for the support you all provided, each one of these replies helped me somehow. I came to this code:
Thanks!
当我使用 Bootstrap 菜单和固定页脚启动 Web 应用程序时,我遇到了这个问题,无论浏览器分辨率如何。
使用以下样式作为页脚元素
内联样式
中使用 class 属性的外部样式表
在 Div style.css
中使用 id 属性的外部样式表
在 Div style.css
This issue i have came cross when I started an web application using Bootstrap menu and fixed footer irrespective of browser resolution.
Use below styling for footer element
In-line style
External style sheet using class attribute in Div
style.css
External style sheet using id attribute in Div
style.css
您可以在CSS中使用此样式来实现您的目标
如果您使用引导程序,请尝试使用margin-left: -15px和margin-right:-15px,但在大多数情况下,当您拥有自己的类时,这是不必要的。
You can use this styles in your CSS to achieve your goal
If you are using bootstrap try with margin-left: -15px and margin-right:-15px but it will not be necessary in most cases when you have your own class.
html:
css:
html:
css:
我遇到了同样的问题并使用 jquery 解决了它。
我在这里所做的是基于用户的屏幕尺寸。
我在减去页眉和页脚的高度后增加了主体部分的高度。
如果完整的 html 正文高度小于用户屏幕尺寸,那么它将增加主体部分的高度,并且页脚将自动到达页面底部。
I was facing same issue and solved it with using jquery.
What I'm doing here is based on the Screen size of the User.
I'm increasing the main-body section height after subtracting the height of header and footer from it.
If the complete html body height is less then the user screen size then it will increase the main-body section height and automatically footer will reach the bottom of page.