Are you familiar with these five common absolute positioning methods?
Five common absolute positioning methods, do you know them all?
Absolute positioning is a commonly used positioning method in CSS, which allows an element to be positioned relative to its nearest positioned ancestor element. In this article, we'll cover five common ways of absolute positioning and provide specific code examples for each.
- top, right, bottom, left positioning
The most common absolute positioning method is to use the top, right, bottom and left attributes to position elements. By specifying the values of these properties, we can control the position of an element relative to its parent element.
<div style="position: relative;"> <div style="position: absolute; top: 10px; right: 10px;">我在右上角</div> </div>
The above code will position the second div element at the top right corner of its parent element, 10 pixels from the top and right.
- Percent positioning
In addition to using specific pixel values, we can also use percentages to position elements. Percent positioning is relative to the width and height of the parent element. For example, we can use 50% to center the element horizontally.
<div style="position: relative;"> <div style="position: absolute; left: 50%;">我水平居中</div> </div>
The above code will position the second div element horizontally centered on its parent element.
- Offset positioning
Offset positioning is to position an element by specifying its offset from its original position. We can use negative values to move an element up or to the left, and positive values to move an element down or to the right.
<div style="position: relative;"> <div style="position: absolute; top: -20px; left: -20px;">我向上和向左偏移了</div> </div>
The above code will move the second div element up and to the left by 20 pixels.
- Cascading positioning
Cascading positioning refers to controlling the stacking order of elements by specifying the z-index attribute of the element. The larger the z-index value of an element, the higher it is displayed.
<div style="position: relative;"> <div style="position: absolute; top: 10px; left: 10px; z-index: 1;">我在上面</div> <div style="position: absolute; top: 20px; left: 20px; z-index: 2;">我在下面</div> </div>
The above code displays the second div element on top of the first div element.
- Fixed positioning
Fixed positioning means that the element is positioned relative to the position of the browser window. No matter how the scroll bar moves, the element will remain in a fixed position.
<div style="position: fixed; top: 10px; right: 10px;">我固定在右上角</div>
The above code will pin the element to the upper right corner of the browser window.
By mastering these five common absolute positioning methods, we can more flexibly control and layout elements in web pages. I hope this article can help you understand and use CSS absolute positioning.
The above is the detailed content of Are you familiar with these five common absolute positioning methods?. For more information, please follow other related articles on the PHP Chinese website!

Here's a container with some child elements:

Flyout menus! The second you need to implement a menu that uses a hover event to display more menu items, you're in tricky territory. For one, they should

"The power of the Web is in its universality. Access by everyone regardless of disability is an essential aspect."- Tim Berners-Lee

In this week's roundup: datepickers are giving keyboard users headaches, a new web component compiler that helps fight FOUC, we finally get our hands on styling list item markers, and four steps to getting webmentions on your site.

The short answer: flex-shrink and flex-basis are probably what you’re lookin’ for.

In this week's look around the world of web platform news, Google Search Console makes it easier to view crawled markup, we learn that custom properties

The IndieWeb is a thing! They've got a conference coming up and everything. The New Yorker is even writing about it:


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version
Useful JavaScript development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.