Conditions for relative or absolute positioning

一个新手
Release: 2017-09-12 09:05:25
Original
2000 people have browsed it

To understand positioning, you must first understand the document flow. The relatively positioned elements in the document flow occupy a position and will affect subsequent elements (block elements, inline block elements). For example, if two p's are side by side, the other one will wrap.

111


##

222

Absolute positioning is to remove the element from the document flow Kicked out, it will not occupy the position of the document flow, nor will it affect subsequent elements.

111


222

As above In the instance, 111 and 222 will overlap, inspect the elements and you will find that 222 has an actual position and 111 has no position. It uses left, right, top, bottom and other attributes to perform absolute positioning relative to its closest parent object with the most positioning settings. If there is no such parent object, it is based on the body object. And its cascade is defined through the z-index attribute.

Web page layout involves compatibility with various devices and resolutions, so absolute positioning is destined to not be applicable to most scenarios. . So the layout can only depend on the position of the superior element, not the height and width of the device.

The scenarios suitable for absolute positioning are mainly some page auxiliary functions.

The above is the detailed content of Conditions for relative or absolute positioning. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!