写在最前:Sticky Footer是css的一种布局场景。页脚footer永远固定在页面的底部,页面内容不够长的时候页脚黏在视窗底部,内容足够长时会被向下移动。老式门户网站由于内容过短常常版权页脚前移,移动端特定布局也需要Sticky Footer来解决这些问题。
已知底部高度,利用绝对定位和padding完美兼容https://codepen.io/qietuniu/pen/KYxMwv
dom节点
<div class="container">
<div class="header"></div>
<div class="section">
</div>
<div class="footer">Copyright© 1994-2019 切图妞</div>
</div>
样式代码
html,
body {
height: 100%;
}
.container {
position: relative;
min-height: 100%;
height: auto !important;
height: 100%; /*IE6不识别min-height*/
}
.section {
padding-bottom: 60px;
}
.footer {
position: absolute;
width: 100%;
height: 60px;
bottom: 0px;
}
已知底部高度,利用padding-bottom和margin-top完美兼容https://codepen.io/qietuniu/pen/dLqpdR
DOM节点
<div class="container">
<div class="header"></div>
<div class="section">
</div>
<div class="footer">Copyright© 1994-2019 切图妞</div>
</div>
样式代码
html,
body {
height: 100%;
}
.container {
min-height: 100%;
height: auto !important;
height: 100%; /*IE6不识别min-height*/
}
.section {
padding-bottom: 60px;
}
.footer {
position: relative;
margin-top: -60px;
width: 100%;
height: 60px;
}
已知底部高度,新增块级元素填补页脚遮挡,实现完美兼容https://codepen.io/qietuniu/pen/dLqpez
DOM节点
<div class="container">
<div class="header"></div>
<div class="section">
</div>
</div>
<div class="footer">Copyright© 1994-2019 切图妞</div>
样式代码
html,
body {
height: 100%;
}
.container {
min-height: 100%;
height: auto !important;
height: 100%; /*IE6不识别min-height*/
margin-bottom: -60px;
}
.placeholder,
.footer {
height: 60px;
}
底部不定高度,利用表格属性实现完美兼容https://codepen.io/qietuniu/pen/QPVKVR
DOM节点
<div class="container">
<div class="header"></div>
<div class="section">
</div>
<div class="footer">Copyright© 1994-2019 切图妞</div>
</div>
样式代码
html,
body {
height: 100%;
}
.container {
display: table;
width: 100%;
min-height: 100%;
}
.section {
display: table-row;
height: 100%;
}
vh存在兼容有限,一般在移动端使用。100vh可代替body和html的100%来拿到视口高度实现效果https://codepen.io/qietuniu/pen/NmLRmV
DOM节点
<div class="container">
<div class="header"></div>
<div class="section">
</div>
</div>
<div class="footer">Copyright© 1994-2019 切图妞</div>
样式代码
.container {
min-height: calc(100vh - 60px);
}
.footer {
height: 60px;
}
底部不定高度,利用flex弹性布局实现效果,兼容性有限建议移动端使用https://codepen.io/qietuniu/pen/EJeNYW
DOM节点
<div class="container">
<div class="header"></div>
<div class="section">
</div>
<div class="footer">Copyright© 1994-2019 切图妞</div>
</div>
样式代码
.container {
display: flex;
flex-flow: column;
min-height: 100vh;
}
.section {
flex: 1
}
底部不定高度,利用Grid网格实现效果,兼容性有限建议移动端使用https://codepen.io/qietuniu/pen/EJeNYW
DOM节点
<div class="container">
<div class="header"></div>
<div class="section">
</div>
<div class="footer">Copyright© 1994-2019 切图妞</div>
</div>
样式代码
.container {
min-height: 100vh;
display: grid;
grid-template-rows: 1fr auto;
}
.footer {
grid-row-start: 2;
grid-row-end: 3;
}
以上方法各有优劣,根据使用场景选择合适的方案
场景 | 方案 |
---|---|
兼容性要求高 | ①②③ |
底部不固定高度 | ④⑥⑤⑦ |
PC端建议 | ①② |
移动端建议 | ①②⑥ |
来自:https://segmentfault.com/a/1190000018961782
css两端对齐,通过margin负值、justify、space-between、column-count等多种方式来实现css的两端对齐。
flex布局(Flexible Box)是对界面css盒模型的一个优化,适应不同尺寸的屏幕,被定义flex的容器可以控制子元素的排列方向和大小,能够用更简单清晰的代码来完成复杂的布局。
在我们的实际开发中,经常会遇到页面中需要悬浮效果,本文将介绍通过fixed的实现,以及通过原生Js实现滚动到一定位置,实现div的悬浮
CSS中Grid是一种二维网格式布局方式,Grid是为了解决二维布局问题而创建的CSS模块。使用Gird的好处,Gird在浏览器的兼容性,Grid布局的示例源码...
flex常用布局:经典的上-中-下布局。在上-中-下布局的基础上,加了左侧定宽 sidebar。左边是定宽 sidebar,右边是上-中-下布局。还是上-中-下布局,区别是 header 固定在顶部,不会随着页面滚动。左侧 sidebar 固定在左侧且与视窗同高,当内容超出视窗高度时,在 sidebar 内部出现滚动条。
本文中,所有的图形都是在单个标签内实现的,大量使用了 CSS3 中的 ::before 、::after 伪元素,transparent 、border,多重线性与径向渐变,多重内外阴影,如果你的效果不尽人意,请尝试在 Chrome 浏览器下预览。
html实现用时间点来展示事件发生点来代替用table展示一条条数据,能够给人清晰、一目了然能够看清事情发生的过程,UI页面也显示的那么清晰。如何用css+html做出时间轴展示事件点的?
这篇文章主要整理一些关于基于jquery,实现横向/纵向时间轴的插件推荐:jquery.jqtimeline插件、timeline.js插件、Timeglider.js插件、Melon HTML5 、jQuery Timelinr、Timeline Porfolio
css可以通过为元素设置一个position属性值,position定位是指定位置的定位,以下为常用的几种:static(静态定位)、relative定位(相对定位)、absolute定位(绝对定位)、fixed(固定定位)、inherit定位
css圣杯布局思路:外面一个大div,里面三个小div(都是浮动)。实现左右两栏宽度固定,中间宽度自适应。中间栏优先渲染。
内容以共享、参考、研究为目的,不存在任何商业目的。其版权属原作者所有,如有侵权或违规,请与小编联系!情况属实本人将予以删除!