- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我正在尝试将页脚放在页面底部 我在网上学习了一些教程,我认为它有它并且它到了底部但是当我开始添加内容时它滚动了一半一路向上。
我不需要它始终出现在所有内容的下方...我是初学者,在学习教程的过程中尝试学习,所以您能记住这一点吗...提前致谢!
这是我的 style.css
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
src: local('Open Sans'), local(OpenSans), url(http://fonts.gstatic.com/s/opensans/v10/cJZKeOuBrn4kERxqtaUH3T8E0i7KZn-EPnyo3HZu7kw.woff) format("woff")
}
* {
margin: 0;
padding: 0
}
body {
background: #f5f5f5;
font-family: 'Open Sans', sans-serif;
margin: 0;
padding: 0;
height: 100%
}
a {
text-decoration: none;
color: #444
}
a:hover {
color: blue
}
section {
background: #000;
box-shadow: 0 2px 2px #ebebeb
}
header {
margin: 0 auto;
text-align: center;
position: relative;
background: url(blackboardbg.jpg) 0 no-repeat;
background-size: 100% 100%
}
nav li {
display: inline-block;
padding: 40px 30px 37px 0
}
nav li:nth-child(3) {
padding-right: 200px
}
nav li:nth-child(4) {
padding-left: 220px
}
.logo {
background: url(images/logo.png) 50% 0 no-repeat;
background-size: 300px 211px;
width: 300px;
height: 211px;
position: absolute;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
top: 21px
}
#locator {
position: absolute;
visibility: show;
left: 950px;
top: 165px;
z-index: 100
}
p {
margin: 150px auto 0;
width: 600px;
text-align: center;
font-size: 15px
}
navmain {
line-height: 30px;
background-color: #eee;
border: 1px solid #b9b9b9;
border-radius: 5px;
height: 300px;
width: 200px;
float: left;
padding: 5px
}
sectionblank {
width: 60px;
float: left;
padding: 10px
}
sectionmain {
background-color: #eee;
border: 1px solid #b9b9b9;
border-radius: 5px;
width: 700px;
float: left;
padding: 10px
}
#container {
min-height: 100%;
height: 100%;
position: relative
}
#contentmain {
width: 75%;
margin: 0 auto
}
#content {
padding: 10px;
padding-bottom: 80px
/* Height of the footer element */
}
#footer {
position: absolute;
bottom: 0;
width: 100%;
height: 60px;
/* Height of the footer */
background: url(blackboardbg.jpg) 0 no-repeat;
background-size: 100% 100%
}
和 index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>
Casper Creations
</title>
<meta content="Casper Creations" name="description">
<meta content="Lucy Smith" name="author">
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="container">
<section>
<header>
<nav>
<ul>
<li>
<img src="buttons/home.png">
</li>
<li>
<img src="buttons/about.png">
</li>
<li>
<img src="buttons/services.png">
</li>
<li>
<img src="buttons/gallery.png">
</li>
<li>
<img src="buttons/FAQ.png">
</li>
<li>
<img src="buttons/contact.png">
</li>
</ul>
</nav>
<div class="logo">
</div>
</header>
</section>
<p>
</p>
<div id="contentmain">
<div id="locator">
<img src="callnow.png">
<br>
</div>
test
<br>test
<br>test
<br>test
<br>test
<br>test
<br>test
<br>test
<br>test
<br>test
<br>test
<br>test
<br>test
<br>test
<br>test
<br>
<b>Categories</b>
<br>
<br>
<i>Kids</i>
<br>← Frozen
<br>← Peppa Pig
<br>← My Little Pony
<br>← Mr Tumble
<br>
<h1>
Welcome
</h1>
<p>
Welcome to Casper Creations
</p>
</div>
</div>
<div id="footer">
<table style="width: 100%; height: 100%">
<tr style="vertical-align: central">
<td style="text-align: center; color:#FFFFFF; font-size: 12px">
<b>Special Offers | Advanced Search | Reviews | Create
an Account | Log In</b>
</td>
</tr>
</table>
</div>
</body>
</html>
最佳答案
我刚刚在 Fiddle 中添加并调整了您的标记.它没有按预期工作的原因是,#footer
将 position:absolute;
设置为 bottom:0;
,但是此位置相对于位置不是 static
的下一个父级。我刚刚用 id="container"
移动了 div 中的 #footer
,它有 position:relative;
所以页脚将是显示在底部。
因为页脚的字体颜色是白色,所以我刚刚添加了一个不同的虚拟图像来进行说明。
进一步引用可能有用:https://developer.mozilla.org/en-US/docs/Web/CSS/position
@font-face {
font-family:'Open Sans';
font-style: normal;
font-weight: 400;
src: local('Open Sans'), local(OpenSans), url(http://fonts.gstatic.com/s/opensans/v10/cJZKeOuBrn4kERxqtaUH3T8E0i7KZn-EPnyo3HZu7kw.woff) format("woff")
}
* {
margin: 0;
padding: 0
}
body {
background: #f5f5f5;
font-family:'Open Sans', sans-serif;
margin: 0;
padding: 0;
height: 100%
}
a {
text-decoration: none;
color: #444
}
a:hover {
color: blue
}
section {
background: #000;
box-shadow: 0 2px 2px #ebebeb
}
header {
margin: 0 auto;
text-align: center;
position: relative;
background: url(blackboardbg.jpg) 0 no-repeat;
background-size: 100% 100%
}
nav li {
display: inline-block;
padding: 40px 30px 37px 0
}
nav li:nth-child(3) {
padding-right: 200px
}
nav li:nth-child(4) {
padding-left: 220px
}
.logo {
background: url(images/logo.png) 50% 0 no-repeat;
background-size: 300px 211px;
width: 300px;
height: 211px;
position: absolute;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
top: 21px
}
#locator {
position: absolute;
visibility: show;
left: 950px;
top: 165px;
z-index: 100
}
p {
margin: 150px auto 0;
width: 600px;
text-align: center;
font-size: 15px
}
#navmain {
line-height: 30px;
background-color: #eee;
border: 1px solid #b9b9b9;
border-radius: 5px;
height: 300px;
width: 200px;
float: left;
padding: 5px
}
#sectionblank {
width: 60px;
float: left;
padding: 10px
}
#sectionmain {
background-color: #eee;
border: 1px solid #b9b9b9;
border-radius: 5px;
width: 700px;
float: left;
padding: 10px
}
#container {
min-height: 100%;
height: 100%;
position: relative
}
#contentmain {
width: 75%;
margin: 0 auto
}
#content {
padding: 10px;
padding-bottom: 80px
/* Height of the footer element */
}
#footer {
position: absolute;
bottom: 0;
width: 100%;
height: 60px;
/* Height of the footer */
background: url(http://placekitten.com/g/500/60) 0 no-repeat;
background-size: 100% 100%
}
<div id="container">
<section>
<header>
<nav>
<ul>
<li>
<img src="buttons/home.png">
</li>
<li>
<img src="buttons/about.png">
</li>
<li>
<img src="buttons/services.png">
</li>
<li>
<img src="buttons/gallery.png">
</li>
<li>
<img src="buttons/FAQ.png">
</li>
<li>
<img src="buttons/contact.png">
</li>
</ul>
</nav>
<div class="logo"></div>
</header>
</section>
<p></p>
<div id="contentmain">
<div id="locator">
<img src="callnow.png" />
<br>
</div>test
<br>test
<br>test
<br>test
<br>test
<br>test
<br>test
<br>test
<br>test
<br>test
<br>test
<br>test
<br>test
<br>test
<br>test
<br> <b>Categories</b>
<br>
<br> <i>Kids</i>
<br>← Frozen
<br>← Peppa Pig
<br>← My Little Pony
<br>← Mr Tumble
<br>
<h1>
Welcome
</h1>
<p>Welcome to Casper Creations</p>
</div>
<div id="footer">
<table style="width: 100%; height: 100%">
<tr style="vertical-align: central">
<td style="text-align: center; color:#FFFFFF; font-size: 12px"> <b>Special Offers | Advanced Search | Reviews | Create
an Account | Log In</b>
</td>
</tr>
</table>
</div>
</div>
关于html - 在我添加内容之前,在遵循教程到底部后页脚被定位?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27761961/
如何在不使用垫片的情况下将 View 定位在底部。我知道我可以在 VStack 中放置一个间隔器和我的 View 来实现它,但我不想使用一个间隔器,因为我不希望我的 View 占据所有的垂直空间。使用
我想让文本 float 到现有标签的右下角。 我仍在使用旧学校表(编辑现有代码)。我的代码是这样的:
我有一个包含文本的表格单元格,但我怎样才能使文本齐平到单元格的顶部或底部(上面没有填充)?我试过垂直对齐,但它仍然没有到达顶部“边缘”。 我的代码 3.2325
我想用 javascript 打印一个特殊的页面 div。 function printDiv(divName) { var printContents = document
我需要检查元素是否距离页面底部 x 像素,以动态加载新内容。目前,即使栏位于底部,scrollTop 和高度也不匹配。 jquery 是允许的,虽然基本的 javascript 会更有帮助。 最佳答案
我正在用 pygame 重新制作 flappy bird,但主题是星球大战。我已经完成了游戏的美术和一般格式设置,但现在我需要调整细节。我一直在改变数字,试图让光剑完全到达屏幕的顶部和底部,因为目前有
http://pastehtml.com/view/bfzerlo1m.html 如何将红色框放在橙色 div 底部的 CENTER + 中? 红框的高度和宽度都是动态的,每个框都不同.. (它需要在
我正在研究和测试表格。到目前为止,我成功地使用 following fiddle 将选择框列表中的项目一项一项地向上和向下移动。 . 代码实例(向上移动): function moveUp() { $
在设计 IOS 应用程序时,我可以在页脚放置“后退”按钮功能吗? 最佳答案 我认为指南中没有任何内容禁止这样做,但是您的潜在用户习惯于将后退按钮放在左上角,因此除非您有充分的理由将后退按钮放在底部,并
你可以只在顶部/底部而不是所有(T、B、L、R)设置单元格填充或间距吗? 最佳答案 CSS? td { padding-top: 2px; padding-bottom: 2px; } 关于H
我正在为我的 React 应用程序使用无限滚动,并具有检测我何时恰好位于页面底部的功能: const [isFetching, setIsFetching] = useState(false); //
所以我有一个页面,其中有一个类似聊天的 div,里面充满了文本。它具有固定的高度和宽度(由 css 定义)。 我需要它在每次更新时滚动到底部,这是我到目前为止使用的 JS: $("#div1").an
我遇到了与此处描述的相同的问题:UIWebView doesn't scroll to the bottom of the webpage loaded/created (不幸的是没有人回答) 我有一
我有一个溢出设置为滚动的 div,它本质上是逐行从文件中流式传输数据。我想在流溢出时自动滚动到 div 的底部,但不使用“单击此处滚动到底部”按钮。 我已经知道 scrollTop = scrollH
我正在 Android studio 中构建一个应用程序,但遇到了一些问题。我在 main_activity.xml 中有一个 ImageView
我有一个扩展 Jpanel 的类,里面有一个动画。我有两个操作按钮可以停止和启动它,但是我需要这些按钮出现在 Jpanel 的底部。我已经尝试过: add(go,BOTTOM_ALIGNMENT);
嗨,我正在为ios设备(ipad)开发phonegap / cordova项目。该应用程序通过蓝牙键盘接收输入文本(因为我不想在屏幕上显示键盘)。到目前为止,应用程序可以按预期接收输入。但是关于外观,
我想在底部放置一个页脚。 出于某种原因,它会像这样出现。 在 index.html 中,我有:
我得到了一个带有内联编辑功能的 jqgrid,并且可以添加新行。 目前,新行以“编辑”模式显示在网格顶部。我想要的是将新行添加到网格底部,因为我的“添加新行”按钮位于自定义底部分页器中... 有人知道
在 Swift 3 中,我以编程方式创建了一个(底部)工具栏,其中包含自定义按钮,中间用灵活的垫片分隔自定义按钮,将一个(“上一个”)推到左边缘,另一个(“下一个”)到 View 的右边缘。但我无法显
我是一名优秀的程序员,十分优秀!