Home  >  Article  >  Web Front-end  >  Web front-end interview question No. 8—Absolute positioning and relative positioning

Web front-end interview question No. 8—Absolute positioning and relative positioning

PHPz
PHPzOriginal
2017-04-04 10:15:472794browse

Relative positioning (relative):

Let’s talk about relative positioning first: just like its name, relative, there must be a reference object, but this reference is not something else, it is it own position in the original document flow. The object after relative positioning is not completely separated from the document flow. The original position of the object in the document is retained (standing in the latrine without shit), and the offset object will other objects. layer mask.

The relative positioning characteristics are summarized as follows:

①For relatively positioned elements, if the width is not set, the width is the width of the entire browser, or depends on Based on the width of the parent element.

②The relatively positioned block element moves relative to its original position. After moving, it still occupies the position of the document flow and does not affect the layout of other elements

The following is verified through code

Place 5 boxes in the browser, represented by different colors, the code is as follows

HTML code

Web front-end interview question No. 8—Absolute positioning and relative positioning


CSS code

Web front-end interview question No. 8—Absolute positioning and relative positioning


##Initial rendering

Web front-end interview question No. 8—Absolute positioning and relative positioning


Set relative positioning for the third box

Web front-end interview question No. 8—Absolute positioning and relative positioning


The element is offset relative to its original position, and its width and height remain unchanged. It expands the container and occupies its original position in the document flow, without affecting the layout of other elements.

Web front-end interview question No. 8—Absolute positioning and relative positioning


##Absolute positioning(absolute):The absolutely positioned object will be separated from the document flow. The reference position of the absolute positioning is no longer itself. Which one it is depends on whether its superior or superior has been positioned. Use

left

, right, top, bottom, etc.Attributesare absolute relative to its closest parent object that has relative or absolute positioning settings. Positioning, if the parent object does not set the positioning attribute, it will be positioned relative to the html root element. After reading some posts, I found that some people think that if the parent object does not set the positioning attribute, it will be positioned relative to the body. This statement is wrong. The characteristics of absolute positioning are summarized as follows:

① When the width of an absolutely positioned block element is not set, the width is determined by the content inside the element

②After detaching, the original position is equivalent to empty, and the following elements will occupy the position

③The absolutely positioned object is set relative to the one closest to itself Position the parent object with relative positioning or absolute positioning

④If the parent element is not positioned, position it relative to the html root element

The following still uses these five The offset of each box is used to verify

(1) The block element has no offset value. The five boxes above

only give box5 an absolute positioning and no offset value. At this time, the block element is just floating in its original position. If there is a block element behind it, it will occupy its position in the document flow. Let's add a box6 below box5 to see the effect.

Note: If the width of an absolutely positioned block element is not defined, the width is determined by the content inside the element.

Web front-end interview question No. 8—Absolute positioning and relative positioning


The rendering is as follows

Web front-end interview question No. 8—Absolute positioning and relative positioning


The effect of adding a box6

Web front-end interview question No. 8—Absolute positioning and relative positioning

##As can be seen from the picture, box6 has already occupied The position of box5 in the document flow.

(2) There is an offset value

If the offset value is set and the parent element does not set relative positioning or absolute positioning, the element is positioned relative to the root element (i.e. html element, note that it is relative to the root element, not relative to the body) Use the offset of box5 to verify.

①Give box5 an offset, the parent element has no relative or absolute positioning

Web front-end interview question No. 8—Absolute positioning and relative positioning


# #The effect is as follows

Web front-end interview question No. 8—Absolute positioning and relative positioning


##②Give box5 the same offset and give the body element an absolute positioning (body element setting For absolute positioning, the width of an absolutely positioned block element is determined by the longest p, and the width becomes smaller):


Web front-end interview question No. 8—Absolute positioning and relative positioning


The renderings are as follows

Web front-end interview question No. 8—Absolute positioning and relative positioning

Pictures

Sent from AppIt is obvious from the two renderings above that they are relatively different Positioning relative to the root element is different from positioning relative to the body. The main difference is whether the

margin

value of the body is included. Next, nest three more parent boxes outside the five boxes, and give these three parent boxes a position to verify whether they are offset based on the most recently positioned parent element.

The code is as follows

HTML code

Web front-end interview question No. 8—Absolute positioning and relative positioning


##CSS code


Web front-end interview question No. 8—Absolute positioning and relative positioning

#Rendering


Picture from AppWeb front-end interview question No. 8—Absolute positioning and relative positioning
It is obvious from the above that box5 is positioned relative to the third-layer container, which is the container closest to it. If you are interested, you can give it a try and remove the positioning of the third-layer container to see if it is positioned relative to the second-layer container. I have verified it and will not post the picture.

Some students may ask why the outermost box should be set to absolute positioning and the other two to relative positioning. The difference in this positioning method mainly affects the width of the box and the relative positioning of block elements. When the width is not set, its width is the default browser width. If there is a parent element, its width is determined by the parent element. If the content of this block element is too much, the parent element will also be Hold it big.

, that is to say, the width of the relatively positioned block element depends on the parent element. So what will be the effect if these three containers are set to absolute positioning? Let's take a look at the renderings first

The picture is from AppWeb front-end interview question No. 8—Absolute positioning and relative positioning
As can be seen from the picture, the width of the third-layer container no longer depends on the parent element, because it changes from the document Detached from the flow, he is independent on his own, and his width can only be determined by the content. To sum up, the width of an absolutely positioned block element is determined by its own content. When the width of a relatively positioned block element is not set, it defaults to the width of the browser. But regardless of the width, the absolutely positioned element will find the parent element closest to itself (absolute or relative positioning) for positioning.

Summary:

relative: positioning is relative to its own position (when setting the offset, it will be relative to its own position offset). The element set to relative is still in the document flow, the width and height of the element remain unchanged, and setting the offset will not affect the position of other elements. The outermost container is set to relative positioning. If the width is not set, the width is the width of the entire browser.

absolute: Positioning is determined relative to the parent element closest to the element that is set to absolute or relative positioning. If no parent element is set to absolute or relative positioning, the element is positioned relative to the root element, which is the html element. The element with absolute set is out of the document flow. If the width of the element is not set, the width is determined by the content inside the element. After detaching, the original position is equivalent to being empty, and the following elements will occupy the position.

Note: The experimental results of this article are obtained when the parent element and child elements are not set to a fixed width. If the parent element is set to a fixed width, its child elements will be positioned either absolutely or relatively. No child element can exceed the width of its parent element. The parent element is the big brother and no one can exceed him.

The above is the detailed content of Web front-end interview question No. 8—Absolute positioning and relative positioning. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn