css – 当位置设置为绝对值时,margin-left和left之间的差异

前端之家收集整理的这篇文章主要介绍了css – 当位置设置为绝对值时,margin-left和left之间的差异前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
1.position:绝对的;左:200像素;

2.position:绝对的;保证金左:200像素;

上述款式有什么不同吗?

解决方法

有一个微妙的区别.

请考虑以下示例:

<div class="wrap">
    <div class="ex1">Ex 1</div>
    <div class="ex2">Ex 2</div>
    <div class="ex3">Ex 3</div>
</div>

body {
    margin: 0;
}
.wrap {
    margin: 0 50px;
    background-color: lightgray;
    height: 200px;
    width: 400px;
}
.ex1 {
    position: absolute;
    background-color: beige;
    margin-left: 50px;
}
.ex2 {
    position: absolute;
    left: 50px;
    background-color: beige;
    margin-left: 0px;
}
.ex3 {
    position: absolute;
    top: 50px; /* so you can see what is happening */
    left: 0px;
    background-color: beige;
    margin-left: 50px;
}

并查看结果:http://jsfiddle.net/audetwebdesign/WQA6B/

在示例1(.ex1)中,边距是父容器(.wrap)左边缘的50px.

在示例2(.ex2)中,元素距视图端口的左边缘50px.

要使.ex2的行为与.ex1类似,您需要设置position:relative
到.wrap所以这两个div都是根据相同的上下文定位的.

还有另一个因素.在示例1中,我没有指定任何偏移量,因此如果您使用position:static,则元素将保留在该位置,这就是相对于包装器左边缘计算边距的原因.

如果我向左设置:0(参见示例3),您将得到类似于示例2的结果.

原文链接:https://www.f2er.com/css/215744.html

猜你在找的CSS相关文章