- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我得到了一个用“负底边距”技术实现的粘性页脚(不使用 flex 因为需要支持 IE)
它工作正常,直到我有一些像 <h>
这样的元素或 <p>
然后在其中呈现一个烦人的垂直滚动条。
我的临时解决方法是使用 <span>
相反,但布局会略有不同。这里最好的解决方案是什么?
html,
body,
form {
height: 100%;
margin: 0;
}
.wrapper {
min-height: 100%;
/* Equal to height of footer */
/* But also accounting for potential margin-bottom of last child */
margin-bottom: -30px;
}
.footer,
.push {
height: 30px;
}
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<form>
<div class="wrapper">
<h1>I am the header</h1><!--I needs to use span here-->
<div class="push"></div>
</div>
<footer class="footer">
<p>I am the footer</p><!--I needs to use span here-->
</footer>
</form>
</body>
</html>
最佳答案
我用你的代码和修复创建了一个 JSFiddle。这是我添加的内容:
.wrapper {
padding: 1px 0;
box-sizing: border-box;
}
.footer,
.push {
height: 30px;
overflow: hidden;
}
https://jsfiddle.net/97hsqLav/
你有两个主要问题:
box-sizing
,所以高度保持 100%(而不是 100% + 2px 填充)Overflow: hidden
通过切断超过 30px 的所有内容来修复此问题关于html - 如果涉及 <h> 元素,则负底边距 "stickey footer"具有烦人的垂直滚动条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53391014/
鉴于下面的基本 HTML 结构(我无法更改),我知道我可以使用此 CSS 扩展主要内容 div: html, body { height: 100%; } body { display: fl
这应该类似于 iOS tableview 页脚,也可以在各种网站中看到(粘性页脚)。 我想实现以下目标: A 是具有可变行数的 RecyclerView。 当 A 小于屏幕(或父级)尺寸时,B(页脚)
我有一个 Bootstrap 面板,底部有两个按钮: {{ Form::open( array('route' => array('dogs.edit', $dog->id)
我是一名优秀的程序员,十分优秀!