Implementation of positioning CSS child elements relative to parent elements

Implementation of positioning CSS child elements relative to parent elements

Solution

Add position:relative to the parent element;
Add position:absolute; right:20px to the child element;

Code

HTML structure

<div id="div1">
	<div id="div2"></div>
</div>

CSS

#div1{
	width:500px;height:500px;
	background-color: darkgray;
	position:relative;
}
#div2{
	width:30px;height:30px;
	background-color:red;
	position:absolute;
	right:20px;
}

Effect

principle

When the browser renders HTML, there is a concept of document flow. Block-level elements are rendered on a new line, and inline elements are rendered inline. Here, the two divs are both block-level elements, one parent and one child. Normally, the rendering result is that the parent element is in the upper left corner of the browser, and the child element is in the upper left corner of the parent element.

If we want to position the child element relative to the parent element, we need to use the position attribute.
position Property Value

Property Value describe
absolute Generates an absolutely positioned element, positioned relative to the first parent element that is not static positioned.
relative Generates a relatively positioned element, positioned relative to its normal position.

We know that to use positioning relative to the parent element, we must use absolute. Why doesn't using absolute directly work? Because absolute positioning is used relative to the parent element, there is a requirement for the parent element, that is, the position of the parent element cannot be static. If the position of the parent element is static, then continue to search upwards for elements until an element whose position is not static is found, and then position this element relatively. Therefore, it is necessary to set the position of the parent element to relative. This has no effect, because relative positioning is only relative to the normal position. The normal position is the so-called default output position of the document flow. If we set the position to relative without setting the offset x, y, it is equivalent to the position of the parent element not changing.

This is the end of this article about how to position child elements relative to their parent elements in CSS. For more information on positioning child elements relative to their parent elements in CSS, please search previous articles on 123WORDPRESS.COM or continue to browse the related articles below. We hope that you will support 123WORDPRESS.COM in the future!

<<:  How to build a SOLO personal blog from scratch using Docker

>>:  Mysql tree-structured database table design

Recommend

Learning Vue instructions

Table of contents 1. v-text (v-instruction name =...

40 CSS/JS style and functional technical processing

1- Styling dropdown select boxes - Modify the dro...

Nine advanced methods for deduplicating JS arrays (proven and effective)

Preface The general methods are not listed here, ...

SQL ROW_NUMBER() and OVER() method case study

Syntax format: row_number() over(partition by gro...

How to Delete Junk Files in Linux Elegantly

I wonder if you are like me, a programmer who arr...

Docker deploys mysql remote connection to solve 2003 problems

Connecting to MySQL Here I use navicat to connect...

How to install mysql via yum on centos7

1. Check whether MySQL is installed yum list inst...

Implementing parameter jump function in Vue project

Page Description:​ Main page: name —> shisheng...

A brief understanding of the relevant locks in MySQL

This article is mainly to take you to quickly und...

CSS style writing order and naming conventions and precautions

The significance of writing order Reduce browser ...

Solution to the problem that MySQL commands cannot be entered in Chinese

Find the problem Recently, when I connected to th...

Programs to query port usage and clear port usage in Windows operating system

In Windows operating system, the program to query...

Detailed explanation of VUE responsiveness principle

Table of contents 1. Responsive principle foundat...

MySQL spatial data storage and functions

Table of contents 1. Data Type 1. What is MySQL s...