定位作为页面布局的一部分,对面设计页面至关重要.写了那么多的CSS却至今写不好定位?不要慌,今天我们就来总结一下CSS定位的那些小事情.
fixed
fixed 是 最为简单的了,一般而言,用了fixed很少出现问题.
fixed 以浏览器可视化的边界(即视口)为参考,以top,left等等作为偏移量.
.parent{
height: 400px;
width: 400px;
background: #3d35ff;
}
.child{
height: 200px;
width: 200px;
background: #1fff20;
}
/*fixed 以浏览器可视化的边界(即视口)为参考*/
.child{
position: fixed;
top: 300px;
left: 300px;
}
absolute/relative/static/sticky
absolute
:
不为元素预留空间,通过指定元素相对于最近的非 static 定位祖先元素的偏移,来确定元素位置。绝对定位的元素可以设置外边距(margins),且不会与其他边距合并。
relative
:
该关键字下,元素先放置在未添加定位时的位置,再在不改变页面布局的前提下调整元素位置(因此会在此元素未添加定位时所在位置留下空白)。position:relative 对 table-*-group, table-row, table-column, table-cell, table-caption 元素无效。
static
:
该关键字指定元素使用正常的布局行为,即元素在文档常规流中当前的布局位置。此时 top, right, bottom, left 和 z-index 属性无效。
sticky
:
盒位置根据正常流计算(这称为正常流动中的位置),然后相对于该元素在流中的 flow root(BFC)和 containing block(最近的块级祖先元素)定位。在所有情况下(即便被定位元素为 table 时),该元素定位均不对后续元素造成影响。当元素 B 被粘性定位时,后续元素的位置仍按照 B 未定位时的位置来确定。position: sticky 对 table 元素的效果与 position: relative 相同。(可以用于固定导航在顶部和底部,中间部分可以滚动)
看一个sticky
example:
<div class="nav">nav</div>
<div class="content">content</div>
<div class="footer">footer</div>
.nav{
height: 50px;
width: 100%;
background: #41ff17;
position: sticky;
top:0;
}
.content{
height: 1000px;
width: 100%;
background: #a7cbff;
}
.footer{
height: 100px;
width: 100%;
background: #1fff20;
position: sticky;
bottom:0;
}
接着,总结以下,定位中的几个性质:
1.不设置position 时默认是 static.
2.relative是相对与第一个有定位的父级元素的边界的.不管是absolute,还是relative.
3.父元素浮动之后将不影响子元素定位,子元素依据父父元素定位.
4.margin-top/margin-left参考的边界不一样,对于margin-left: 参考的是包裹着他的parent(包括浮动),对于margin-top:参考的是第一级定位的parent,如果没有定位,则与包裹着的元素边界重叠.
5.上一层parent没有定位,parent 和 child的content 上边界是重叠的,margin-top取两者中较大的.
6.top,left和margin 是相互独立的.
7.为浮动时margin-top/margin-bottom 会合并成取其中较大的margin,margin-left/right 不会合并会求和;浮动之后margin-top/botom不相互影响.
<div class="parent">
<div class="child">
<div class="grandchild">grandchild</div>
</div>
</div>
.parent{
margin: 100px 100px;
}
.child{
margin: 50px 50px;
}
.parent{
margin: 200px 100px;
float:left
}
.child{
margin: 100px 50px;
}
点这里看所有实践例子和截图.
以上.