定位之层模型

2018-05-07  本文已影响0人  Papio_y

css当中除了盒模型之外还有层模型,而出发层模型的主要属性就是position属性,该属性有四个属性值,没有staticrelativeabsolutefixed

static

static属性是position,默认的属性值,当position没有设置属性的时候,该属性值就是static

relative

position: relative; 相对定位,保留原来的位置进行定位

<div class = "demo1"></div>
<div class = "demo2"></div>
div{
    width: 100px;
    height: 100px;
}
.demo1 {
    background-color: green;
    position: relative;
    left: 50px;
    top: 50px;
}
.demo2 {
    background-color: red;
}
relative.png灵魂出窍

可以看到这里绿色元素脱离原来的位置了,但是没有让出原来的位置

absolute

position: absolute;用来设置绝对定位,而这个元素就是层模型很关键的属性


absolute和relative的区别
<div class="wrapper">
    <div class="box">
        <div class="content"></div>
    </div>
</div>
.wrapper {
    width: 200px;
    height: 200px;
    background-color: orange;
    margin-top: 100px;
    margin-left: 100px;
}
.box{
    width: 100px;
    height: 100px;
    background-color: black;
    margin-left: 100px;
}
.content {
    width: 50px;
    height: 50px;
    background-color: yellow;
}
absoluterelative.png
我们通过控制margin让元素处于这种状态
给黄色的加上pasition: absolutle;left:50px;top:50px;之后
position.png
我们发现这里的黄色方块跑出去了
当我们给黑色的加上position:relative 的时候
relative.png
可看到这里黄色方块又根据黑色元素定位了

总结

  1. absolute属性 根据最近的有定位的父级进行定位,如果没有就根据文档进行定位
  2. relative属性 相对自己原来的位置进行定位
  3. 将relative当基地当做参照,用absolute元素进行定位。

fixed

人称广告定位,很多时候你会看到网页上面有很多的小广告,它就在那个位置,不过你怎么滑动页面,它都会在那里,一动不动,没错,它可能就是fixed定位实现的。
position: fixed; 脱离文档流,相对于浏览器窗口进行定位,浏览器窗口,也可以说是可视区

应用

让元素居中定位
<div class="wrapper">
    <div class="content"></div>
</div>
/*让content在wrapper当中垂直居中*/
.wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    border: 1px solid #ccc;
}
.content {
    width: 40px;
    height: 40px;
    background-color: red;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
}
垂直水平居中.png

就是相对于文档进行居中了,同样fixed定位也可以使用这种居中方式,实现在屏幕中间的广告!
关键点:使用margin来平衡那段因为定位移出去的距离!

使用层级定位实现三栏布局

<div class="left"></div>
<div class="right"></div>
<div class="mid"></div>
<!-- 这里mid必须写在结构的最下面,如果在前面的话,我们没有设置top,因为div独立成行的特性,他会占据一行,让left和right换行展示。但是如果对right和left设置了top:0;的话就可以很随意了 -->
*{
    margin:0;
    padding:0;
}
.left {
    position: absolute;
    left: 0;
    width: 100px;
    height: 100px;
    background-color: red;
 }
.right{
    position: absolute;
    background-color: black;
    right: 0;
    width: 100px;
    height: 100px;
}
.mid {
    height: 100px;
    margin-right: 100px;
    margin-left: 100px;
    background-color: orange;
}
能够在三栏布局.png

关于浏览器的一个常见的问题

我们在编写代码之后都有一个初始化的过程*{margin:0;padding:0;},为了去除页面上元素的一些默认的内边距和外边距,避免一些外界的因素导致的bug。
其实,在页面当中body元素本身就包含了8px的margin;

body.png
上一篇下一篇

猜你喜欢

热点阅读