Heim >Web-Frontend >HTML-Tutorial >Integration von Wissen über das Margin-Attribut wichtiger CSS-Eigenschaften

Integration von Wissen über das Margin-Attribut wichtiger CSS-Eigenschaften

WBOY
WBOYOriginal
2016-08-20 08:47:491161Durchsuche

Der folgende Beitrag ist von meinen Erkenntnissen über Margen in den letzten Tagen inspiriert. Ich habe das Gefühl, dass mein bisheriges Verständnis von Margen zu oberflächlich war. Daher ist der folgende Artikel erstens für mich selbst geschrieben, um meine Gedanken zu ordnen; zweitens, um Wissen zu teilen und Missverständnisse über das Randattribut zu vermeiden. Es mag viel Inhalt sein, aber es ist das Wesentliche. Ich hoffe, Sie werden geduldig lernen.

Das folgende Teilen wird in die folgenden Inhalte unterteilt:

1. Eine kurze Einführung in das Margin-Attribut

 1.1: Margin-Prozentsatzeinstellung des normalen Durchflusses

 1.2: Einstellung des absoluten Positionierungsspielraums in Prozent

2.Randelemente, die nicht angewendet werden können

3.Reduzierte Ränder

 3.1: Ursprüngliche Absicht, Ränder zusammenzubrechen

 3.2: Reduzierender Randtyp

 3.2.1: Die Ränder von Geschwisterelementen überlappen

 3.2.2: Die Ränder von übergeordneten und untergeordneten Elementen überlappen

 3.2.3: Das Element wird auch reduziert, wenn sein eigener Rand unten und sein Rand oben benachbart sind

4. Berechnungsregeln für die Marge nach dem Falten

4.1: Die Ränder beim Falten sind alle positiv

4.2: Die Ränder beim Falten sind alle negativ

 4.3: Es gibt positive und negative Werte im Rand, der beim Falten beteiligt ist

5.Lösung für kollabierende Ränder

1. Eine kurze Einführung in das Margin-Attribut

 Bevor wir den Rand einführen, machen wir ein Foto des W3C-Standardboxmodells, damit die Leser die relevante Position überprüfen können.

 

Der Rand wird, wie der Name schon sagt, äußerer Rand genannt. Die grundlegenden Eigenschaften der Marge sind wie folgt

 a: margin ist die Abkürzung für „margin-top“, „margin-right“, „margin-bottom“, „margin-left“ und gibt den Größenbereich des Randes an.

b: Der Randwert kann einer der drei Breitenwerte, Prozentwerte oder „Auto“ sein. Beachten Sie, dass der Rand eine Einheit haben muss, die Pixel, Zoll, Millimeter oder Ems sein kann.

 c: Der Randprozentsatz wird relativ zur Breite des übergeordneten Elements berechnet.

 d: Wenn der Rand margin:10px ist, bedeutet dies, dass die Richtungen oben, rechts, unten und links (gegen den Uhrzeigersinn) jeweils 10px betragen sind 10 Pixel und die linke und rechte Richtung sind 20 Pixel. Wenn der Rand 10 Pixel beträgt, bedeutet dies, dass die obere Richtung 10 Pixel beträgt, die linke und rechte Richtung 20 Pixel und die untere Richtung 5 Pixel Rand: 1px 2px 3px 4px, das bedeutet, dass die obere Richtung 1px ist, die rechte Richtung 2px ist und die untere Richtung 5px ist und die linke Richtung 4px ist.

Durch die kurze Einführung in den Rand oben wissen wir, dass der prozentuale Wert des Randes relativ zur Breite des übergeordneten Elements berechnet wird, die Berechnung des Randes für normale Fluss- und absolut positionierte Elemente jedoch unterschiedlich ist.

 1.1: Margin-Prozentsatzeinstellung für normalen Fluss

Bei gewöhnlichen Flusselementen wird der Randprozentwert basierend auf der Breite des übergeordneten Elements berechnet.

<span style="color: #008080;">1</span>         <span style="color: #0000ff;"><</span><span style="color: #800000;">div </span><span style="color: #ff0000;">class</span><span style="color: #0000ff;">="container"</span><span style="color: #0000ff;">></span>
<span style="color: #008080;">2</span>             <span style="color: #0000ff;"><</span><span style="color: #800000;">div </span><span style="color: #ff0000;">class</span><span style="color: #0000ff;">="content"</span><span style="color: #0000ff;">></</span><span style="color: #800000;">div</span><span style="color: #0000ff;">></span>
<span style="color: #008080;">3</span>         <span style="color: #0000ff;"></</span><span style="color: #800000;">div</span><span style="color: #0000ff;">></span>
<span style="color: #008080;"> 1</span> <span style="color: #800000;">      .container </span>{
<span style="color: #008080;"> 2</span> <span style="color: #ff0000;">        width</span>:<span style="color: #0000ff;"> 300px</span>;
<span style="color: #008080;"> 3</span> <span style="color: #ff0000;">        height</span>:<span style="color: #0000ff;"> 300px</span>;
<span style="color: #008080;"> 4</span> <span style="color: #ff0000;">        background-color</span>:<span style="color: #0000ff;"> lightpink</span>;
<span style="color: #008080;"> 5</span> <span style="color: #ff0000;">        margin</span>:<span style="color: #0000ff;"> 10px</span>;
<span style="color: #008080;"> 6</span> <span style="color: #ff0000;">        display</span>:<span style="color: #0000ff;"> inline-block</span>;   <!--设置此值是有原因的,会在下面讲解。-->
<span style="color: #008080;"> 7</span>       }
<span style="color: #008080;"> 8</span> <span style="color: #800000;">      .container .content </span>{
<span style="color: #008080;"> 9</span> <span style="color: #ff0000;">        width</span>:<span style="color: #0000ff;"> 120px</span>;
<span style="color: #008080;">10</span> <span style="color: #ff0000;">        height</span>:<span style="color: #0000ff;"> 120px</span>;
<span style="color: #008080;">11</span> <span style="color: #ff0000;">        background-color</span>:<span style="color: #0000ff;"> lightgreen</span>;
<span style="color: #008080;">12</span> <span style="color: #ff0000;">        margin</span>:<span style="color: #0000ff;"> 10%</span>;
<span style="color: #008080;">13</span>       }

Wie Sie sehen können, beträgt der Rand oben links 30 Pixel (300 * 10 % = 30). Es gibt einen Grund, die Anzeige für das übergeordnete Element festzulegen, der im folgenden Abschnitt erwähnt wird. Seien Sie also geduldig.

Beachten Sie, dass die Werte der vier Richtungen von margin basierend auf der Breite des übergeordneten Elements berechnet werden!

 1.2: Einstellung des absoluten Positionierungsspielraums in Prozent

Wenn bei einem absolut positionierten Element das übergeordnete Element auf „relativ/absolut/fest“ eingestellt ist, wird der Randprozentwert basierend auf der Breite des übergeordneten Elements berechnet, wenn das übergeordnete Element nicht auf „relativ/absolut/fest“ eingestellt ist , der Randprozentsatz wird basierend auf der Breite der gesamten Seite berechnet.

<span style="color: #008080;"> 1</span> <span style="color: #800000;">.container </span>{
<span style="color: #008080;"> 2</span> <span style="color: #ff0000;">  width</span>:<span style="color: #0000ff;"> 300px</span>;
<span style="color: #008080;"> 3</span> <span style="color: #ff0000;">  height</span>:<span style="color: #0000ff;"> 300px</span>;
<span style="color: #008080;"> 4</span> <span style="color: #ff0000;">  background-color</span>:<span style="color: #0000ff;"> lightpink</span>;
<span style="color: #008080;"> 5</span> <span style="color: #ff0000;">  display</span>:<span style="color: #0000ff;"> inline-block</span>;
<span style="color: #008080;"> 6</span> }
<span style="color: #008080;"> 7</span> <span style="color: #800000;">.container .content </span>{
<span style="color: #008080;"> 8</span> <span style="color: #ff0000;">  width</span>:<span style="color: #0000ff;"> 120px</span>;
<span style="color: #008080;"> 9</span> <span style="color: #ff0000;">  height</span>:<span style="color: #0000ff;"> 120px</span>;
<span style="color: #008080;">10</span> <span style="color: #ff0000;">  background-color</span>:<span style="color: #0000ff;"> lightgreen</span>;
<span style="color: #008080;">11</span> <span style="color: #ff0000;">  position</span>:<span style="color: #0000ff;"> absolute</span>;   <span style="color: #008000;">/*</span><span style="color: #008000;">增加了改该属性</span><span style="color: #008000;">*/</span>
<span style="color: #008080;">12</span> <span style="color: #ff0000;">  margin</span>:<span style="color: #0000ff;"> 10%</span>;
<span style="color: #008080;">13</span> }

可以看出,margin 的值计算结果不再是30px了,而是变成 137px (我的电脑页面宽度为1370px)。这是因为子元素container设置了absolute,导致子元素脱离文档流,四个方位的值是依据页面进行定位,所以 margin值才会发生变化。如果想让子元素还是依据父元素定位,可以为父元素设置 relative/fixed/absolute 其中之一个值, 这样 margin 百分比计算还是 30px,跟普通流中margin 的一样。 同学可以亲自尝试一下。

 

2.margin 无法适用的元素

  有以下元素设置 margin 值是没有效果的。

  a:行内元素垂直 margin 值不起作用。

  b:margin 非 table 类型的元素,以及 table 类型中 table-caption, table-cell 和 inline-table 这3类。例如 TD TR TH 等,margin 是不适用的。

  c:对于行内非替换元素(例如 SPAN),垂直方向的 margin 不起作用。

 

3.外边距折叠 (Collapsing margins)

Collapsing margins,即外边距折叠,指的是相邻的两个或多个外边距 (margin) 会合并成一个外边距。margin 折叠 必须发生在普通流元素中。

  3.1:Collapsing margins 初衷

  Collapsing margins 的初衷就是为了让段落显示的更加好看。以由几个段落组成的典型文本页面为例。第一个段落上面的空间等于段落的上外边距。如果没有外边距合并,后续所有段落之间的外边距都将是相邻上外边距和下外边距的和。这意味着段落之间的空间是页面顶部的两倍。如果发生外边距合并,段落之间的上外边距和下外边距就合并在一起,这样各处的距离就一致了。

 

此图来源于 W3C

  3.2:Collapsing margins 类型

    3.2.1:兄弟元素的 margin 重叠

<span style="color: #008080;">1</span>         <span style="color: #0000ff;"><</span><span style="color: #800000;">div </span><span style="color: #ff0000;">class</span><span style="color: #0000ff;">="container"</span><span style="color: #0000ff;">></</span><span style="color: #800000;">div</span><span style="color: #0000ff;">></span>
<span style="color: #008080;">2</span>         <span style="color: #0000ff;"><</span><span style="color: #800000;">div </span><span style="color: #ff0000;">class</span><span style="color: #0000ff;">="an-container"</span><span style="color: #0000ff;">></</span><span style="color: #800000;">div</span><span style="color: #0000ff;">></span>
<span style="color: #008080;"> 1</span> <span style="color: #800000;">.container </span>{
<span style="color: #008080;"> 2</span> <span style="color: #ff0000;">  width</span>:<span style="color: #0000ff;"> 300px</span>;
<span style="color: #008080;"> 3</span> <span style="color: #ff0000;">  height</span>:<span style="color: #0000ff;"> 300px</span>;
<span style="color: #008080;"> 4</span> <span style="color: #ff0000;">  margin-bottom</span>:<span style="color: #0000ff;"> 10px</span>;
<span style="color: #008080;"> 5</span> <span style="color: #ff0000;">  background-color</span>:<span style="color: #0000ff;"> lightpink</span>;
<span style="color: #008080;"> 6</span> }
<span style="color: #008080;"> 7</span> <span style="color: #800000;">.an-container </span>{
<span style="color: #008080;"> 8</span> <span style="color: #ff0000;">  width</span>:<span style="color: #0000ff;"> 300px</span>;
<span style="color: #008080;"> 9</span> <span style="color: #ff0000;">  height</span>:<span style="color: #0000ff;"> 300px</span>;
<span style="color: #008080;">10</span> <span style="color: #ff0000;">  margin-top</span>:<span style="color: #0000ff;"> 10px</span>;
<span style="color: #008080;">11</span> <span style="color: #ff0000;">  background-color</span>:<span style="color: #0000ff;"> lightgreen</span>;
<span style="color: #008080;">12</span> }

 

    3.2.2:父子元素的 margin 重叠

  • 两个或多个外边距没有被非空内容、padding、border 或 clear 分隔开
  • 这些 margin 都处于普通流中。

      margin-top 重叠:在没有被分隔的情况下,一个元素的 margin-top 会和它普通流中的第一个子元素(非浮动元素等)的 margin-top 相邻。

<span style="color: #008080;">1</span>         <span style="color: #0000ff;"><</span><span style="color: #800000;">div </span><span style="color: #ff0000;">class</span><span style="color: #0000ff;">="container"</span><span style="color: #0000ff;">></span>
<span style="color: #008080;">2</span>             <span style="color: #0000ff;"><</span><span style="color: #800000;">div </span><span style="color: #ff0000;">class</span><span style="color: #0000ff;">="an-container"</span><span style="color: #0000ff;">></</span><span style="color: #800000;">div</span><span style="color: #0000ff;">></span>
<span style="color: #008080;">3</span>         <span style="color: #0000ff;"></</span><span style="color: #800000;">div</span><span style="color: #0000ff;">></span>
<span style="color: #008080;"> 1</span> <span style="color: #800000;">.container </span>{
<span style="color: #008080;"> 2</span> <span style="color: #ff0000;">  width</span>:<span style="color: #0000ff;"> 150px</span>;
<span style="color: #008080;"> 3</span> <span style="color: #ff0000;">  margin-top</span>:<span style="color: #0000ff;"> 10px</span>;
<span style="color: #008080;"> 4</span> <span style="color: #ff0000;">  background-color</span>:<span style="color: #0000ff;"> lightpink</span>;
<span style="color: #008080;"> 5</span> }
<span style="color: #008080;"> 6</span> <span style="color: #800000;">.container .an-container </span>{
<span style="color: #008080;"> 7</span> <span style="color: #ff0000;">  background-color</span>:<span style="color: #0000ff;"> lightgreen</span>;
<span style="color: #008080;"> 8</span> <span style="color: #ff0000;">  width</span>:<span style="color: #0000ff;"> 100px</span>;
<span style="color: #008080;"> 9</span> <span style="color: #ff0000;">  height</span>:<span style="color: #0000ff;"> 100px</span>;
<span style="color: #008080;">10</span> <span style="color: #ff0000;">  margin-top</span>:<span style="color: #0000ff;"> 10px</span>;
<span style="color: #008080;">11</span> }

 

      margin-bottom 重叠:在没有被分隔的情况下,只有在父元素的 height 是 "auto" 的情况下,它的 margin-bottom 才会和它普通流中的最后一个子元素(非浮动元素等)的 margin-bottom 相邻。就是说,父元素的height值不能是固定高度值。如果父元素固定高度,那么margin-bottom会无效的。代码同上。

 

    3.2.3:元素自身的 margin-bottom 和 margin-top 相邻时也会折叠

<span style="color: #008080;">1</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">div </span><span style="color: #ff0000;">style</span><span style="color: #0000ff;">="border:1px solid red; width:100px;"</span><span style="color: #0000ff;">></span>
<span style="color: #008080;">2</span>     <span style="color: #0000ff;"><</span><span style="color: #800000;">div </span><span style="color: #ff0000;">style</span><span style="color: #0000ff;">="margin-top: 100px;margin-bottom: 50px;"</span><span style="color: #0000ff;">></</span><span style="color: #800000;">div</span><span style="color: #0000ff;">></span>
<span style="color: #008080;">3</span> <span style="color: #0000ff;"></</span><span style="color: #800000;">div</span><span style="color: #0000ff;">></span>

以上代码运行后,我们讲得到的是红色边框的正方形,方框的宽高都应该是 100px,高度不应该是 150px。

 

4.折叠后 margin 的计算规则

  4.1:参与折叠的 margin 都是正值

<span style="color: #008080;">1</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">div </span><span style="color: #ff0000;">style</span><span style="color: #0000ff;">="height:50px; margin-bottom:50px; width:50px; background-color: red;"</span><span style="color: #0000ff;">></span>A<span style="color: #0000ff;"></</span><span style="color: #800000;">div</span><span style="color: #0000ff;">></span>
<span style="color: #008080;">2</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">div </span><span style="color: #ff0000;">style</span><span style="color: #0000ff;">="height:50px; margin-top:100px; width:50px; background-color: green;"</span><span style="color: #0000ff;">></span>B<span style="color: #0000ff;"></</span><span style="color: #800000;">div</span><span style="color: #0000ff;">></span>

在 margin 都是正数的情况下,取其中 margin 较大的值为最终 margin 值。

  4.2:参与折叠的 margin 都是负值

<span style="color: #008080;">1</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">div </span><span style="color: #ff0000;">style</span><span style="color: #0000ff;">="height:100px; margin-bottom:-75px; width:100px; background-color: red;"</span><span style="color: #0000ff;">></span>A<span style="color: #0000ff;"></</span><span style="color: #800000;">div</span><span style="color: #0000ff;">></span>
<span style="color: #008080;">2</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">div </span><span style="color: #ff0000;">style</span><span style="color: #0000ff;">="height:100px; margin-top:-50px; margin-left:50px; width:100px; background-color: green;"</span><span style="color: #0000ff;">></span>B<span style="color: #0000ff;"></</span><span style="color: #800000;">div</span><span style="color: #0000ff;">></span>

当 margin 都是负值的时候,取的是其中绝对值较大的,然后,从 0 位置,负向位移。

  4.3:参与折叠的 margin 中有正值,有负值

<span style="color: #008080;">1</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">div </span><span style="color: #ff0000;">style</span><span style="color: #0000ff;">="height:50px; margin-bottom:-50px; width:50px; background-color: red;"</span><span style="color: #0000ff;">></span>A<span style="color: #0000ff;"></</span><span style="color: #800000;">div</span><span style="color: #0000ff;">></span>
<span style="color: #008080;">2</span> <span style="color: #0000ff;"><</span><span style="color: #800000;">div </span><span style="color: #ff0000;">style</span><span style="color: #0000ff;">="height:50px; margin-top:100px; width:50px; background-color: green;"</span><span style="color: #0000ff;">></span>B<span style="color: #0000ff;"></</span><span style="color: #800000;">div</span><span style="color: #0000ff;">></span>

如果,相邻的 margin 中有正值,同时存在负值会怎样呢?有正有负,先取出负 margin 中绝对值中最大的,然后,和正 margin 值中最大的 margin 相加。其实也就是正负相加就可以了。

上面的例子最终的 margin 应该是 100 + (-50) = 50px。

 

5.Collapsing margins 解决方法

  解决方法有如下:

  a:浮动元素、inline-block 元素、绝对定位元素的 margin 不会和垂直方向上其他元素的 margin 折叠 ( 针对 兄弟元素)

    注意: 浮动元素 , inline-block元素 , 绝对定位元素 都属于 BFC元素。

  b:创建了块级格式化上下文(BFC, blocking formatting context )的父元素,比如说overflow:hidden,不和它的子元素发生 margin 折叠 (针对 父子元素)。

  c:给父元素添加以下内容之一都可以避免发生 margin 重叠 。如 添加内容 , 添加 padding , 添加 border。

 

  虽然有方法解决这个问题。但是目前最好的解决方案是回避这个问题。也就是,不要给指定元素添加具有指定宽度的内边距或外边距,而是尝试将内边距或外边距添加到元素的父元素和子元素。

 

 

 

 

完。

 

感谢大家的阅读。

 

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn