search
HomeWeb Front-endCSS TutorialAre you familiar with these five common absolute positioning methods?

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.

  1. 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.

  1. 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.

  1. 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.

  1. 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.

  1. 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!

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
A Little Reminder That Pseudo Elements are Children, Kinda.A Little Reminder That Pseudo Elements are Children, Kinda.Apr 19, 2025 am 11:39 AM

Here's a container with some child elements:

Menus with 'Dynamic Hit Areas'Menus with 'Dynamic Hit Areas'Apr 19, 2025 am 11:37 AM

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

Improving Video Accessibility with WebVTTImproving Video Accessibility with WebVTTApr 19, 2025 am 11:27 AM

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

Weekly Platform News: CSS ::marker pseudo-element, pre-rendering web components, adding Webmention to your siteWeekly Platform News: CSS ::marker pseudo-element, pre-rendering web components, adding Webmention to your siteApr 19, 2025 am 11:25 AM

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.

Making width and flexible items play nice togetherMaking width and flexible items play nice togetherApr 19, 2025 am 11:23 AM

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

Position Sticky and Table HeadersPosition Sticky and Table HeadersApr 19, 2025 am 11:21 AM

You can't position: sticky; a

Weekly Platform News: HTML Inspection in Search Console, Global Scope of Scripts, Babel env Adds defaults QueryWeekly Platform News: HTML Inspection in Search Console, Global Scope of Scripts, Babel env Adds defaults QueryApr 19, 2025 am 11:18 AM

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

IndieWeb and WebmentionsIndieWeb and WebmentionsApr 19, 2025 am 11:16 AM

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

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SecLists

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

WebStorm Mac version

Useful JavaScript development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Safe Exam Browser

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

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.