Absolute, relative and fixed in position positioning
Hierarchical relationship problems caused by position First of all, we need to know that the CSS attribute is actually a three-dimensional space with x, y, and z axes, but the hierarchical relationship on the z-axis is only reflected when we use position positioning, that is, the z-index attribute is only available for positioned elements. Now let's analyze these hierarchical relationships. The hierarchical relationship is as follows:
Only sibling positioning elements can compare levels Let’s analyze the points listed above: Let’s analyze the first point <style> .c1{ width: 100px; height: 100px; background-color: rgb(255, 0, 0); } .c2{ width: 200px; height: 100px; background-color: rgb(0, 0, 255); position: absolute; top: 50px; } </style> <body> <div class="c1">c1</div> <div class="c2">     c2</div> </body> At this time, c2 is at a higher level and should be stacked on top of c1. Let’s analyze the second point <style type="text/css"> .c1{ width: 100px; height: 100px; background-color: rgb(255, 0, 0); position: relative; } .c2{ width: 200px; height: 100px; back At this time, the positioned elements have a hierarchy, and the following elements are on top Let’s analyze the third point <style type="text/css"> .c1{ width: 100px; height: 100px; background-color: rgb(255, 0, 0); position: relative; At this time, c3 will directly cover c2, because c2's positioning is absolute, and the following elements will move to c2. From the second point, we can see that c3 is above c2, so c3 directly covers c2. Let’s analyze the fourth point <style type="text/css"> .c1{ width: 100px; height: 100px; background-color: rgb(255, 0, 0); position: relative; c1 and c2 are both positioned elements, with a default z-index of 0. Set c1's z-index to 1 so that c1 is above c2. Let’s analyze the fifth point <style type="text/css"> .c1{ width: 100px; height: 100px; background-color: rgb(255, 0, 0); position: relative; } .c2{ width: 200px; height: 100px; background-color: rgb(0, 0, 255); position: absolute; z-index: 1; } </style> <body> <div class="c2">      c2 <div class="c1">c1</div> </div> </body> Put c1 inside c2. Even if the z-index of c2 is set to 1, c1 is still above c2, which means that nested elements have no hierarchical relationship. Only sibling elements have a hierarchical relationship. The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. |
<<: Introduction to the use of the indeterminate property of the checkbox
>>: What should I do if I can't view the source file of a web page?
1. The organizational structure of the hypertext d...
Serialization implementation InnoDB implements se...
Downloaded an es image from docker hub, version 6...
How to add <script> script in HTML: 1. You c...
Background Threads •Master Thread The core backgr...
This article is part of a special series on the 2...
This article example shares the specific implemen...
sshd SSH is the abbreviation of Secure Shell, whi...
Apache Superset is a powerful BI tool that provid...
constraint Constraints ensure data integrity and ...
Table of contents Problem scenario: Solution: 1. ...
By default, the border of the table is 0, and we ...
When displaying long data in HTML, you can cut off...
Table of contents Preface Why do we need to encap...
1. Download the ubuntu16.04 image and the corresp...